[DEVELOPMENT ENVIRONMENT]
* BUG: Fix virtual controls management like HttpClient, FtpClient, and so on. git-svn-id: svn://localhost/gambas/trunk@7804 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
82c20cf083
commit
44f544e4cc
1 changed files with 5 additions and 1 deletions
|
@ -10,6 +10,7 @@ Public DefaultEvent As String
|
|||
Public Events As String[]
|
||||
Public PropertyList As String[]
|
||||
Public Properties As Collection
|
||||
Public Control As Boolean
|
||||
Public VirtualControl As Boolean
|
||||
Public DrawWith As String
|
||||
Public DefaultWidth As Short
|
||||
|
@ -133,6 +134,8 @@ Public Sub InitControl()
|
|||
|
||||
'DEBUG Component;; Name
|
||||
|
||||
Control = True
|
||||
|
||||
hSym = Symbols["_Family"]
|
||||
If hSym Then Family = hSym.Value
|
||||
|
||||
|
@ -1019,6 +1022,7 @@ Public Sub ConstructorNeedParent() As Boolean
|
|||
|
||||
Dim hClass As CClassInfo
|
||||
|
||||
If Not Control Then Return False
|
||||
If Not VirtualControl Then Return True
|
||||
If Not Parent Then Return False
|
||||
|
||||
|
|
Loading…
Reference in a new issue