Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 162)

Ticket Resolution Summary Owner Reporter
#114 fixed String、Objectなどを特殊クラスとして扱い、グローバル名前空間から参照可能にする dai dai
#113 fixed Declareに名前空間を適用する。 dai dai
Description

現在、Declareに名前空間が適用されておらず、下記のようなソースコードがコンパイルエラーになってしまう。

Namespace ParentArea
	Declare mb Lib "user32" Alias "MessageBoxA" (hwnd As HWND, msg As LPSTR, title As LPSTR, flags As Long) As Long
End Namespace

ParentArea.mb(0,"test","test",0)
#112 fixed TypeDefに名前空間を適用する dai dai
Description

現在、TypeDefに名前空間が適用されておらず、下記のようなソースコードがコンパイルエラーとなってしまう。

Namespace ParentArea
	TypeDef Test = Long
End Namespace

Dim a As ParentArea.Test
a=100
debug
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.