Hi to all
How do I know if a control is a ComboBox or TextField or CheckBox etc.?
I have a map with the names of some controls and I need to know the type.
Thanks
but not work.
in my map i have this key ("Pastebox", Serialbox, Iptxt,.....)
How convert this in node?
Pastebox is ComboBox
Serialbox is CheckBox
Iptxt is TextField
dim n as Node
For i = 0 to mpset.Size - 1
' n = mpset.Get("Pastebox")
n = mpset.Get(mpset.GetKeyAt(i))
If n Is ComboBox Then
Log("combobox")
Else If n Is CheckBox Then
Log("checkbox")
.........
Else
End If
Next