Okay, I like UDTs - they are not seemingly popular or recommended yet to a self-proclaimed geek, quite fun.
If I were to create a UDT as:
Code:
Private Type MyUDTs
iMyInt as Integer
bytMyByte as Byte
sMyStr(1 to 3) as String
End Type
Private MyUDT as MyUDTs
How would I implement VB's code hinting/autocomplete such as a boolean presenting a popup with True/False as the values?
After the "=", the VB popup offers values I have previously set.
Also can UDTs be embedded within UDTs?
- * MyUDT(ThisUDT).iMyInt
* MyUDT(ThatUDT).iMyInt
To anyone who might know ... THANKS!