View Single Post
  #4 (permalink)  
Old 11-22-2007, 09:57 AM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 3,141
Default

Here is a workaround:
Code:
c = "someobject"
If ControlType(c) = "Other.SWrapObject" Then
       Msgbox(Control(c).ToString)
Else
      Msgbox(ControlType(c))
End If
The object must first be created (using New).
This will be fixed in the next version.
Reply With Quote