N
NewAlias
How to display comments for each enum entry?
'Enum example with commnents commented
Private Enum MyEnum
YourName =1 ' Set this to get your real name
YourAge=2 ' Set this to get your real age
YourNationality=3 ' Set this to retrieve your real nationality
End Enum
'Program extract
....
GetInfoString(YourName
' I want a tooltip to show the text "Set this to get your real name" to
show when I select one of MyEnum entries
' please note that I am speaking about the IDE, not about the running
program
Thanks
'Enum example with commnents commented
Private Enum MyEnum
YourName =1 ' Set this to get your real name
YourAge=2 ' Set this to get your real age
YourNationality=3 ' Set this to retrieve your real nationality
End Enum
'Program extract
....
GetInfoString(YourName
' I want a tooltip to show the text "Set this to get your real name" to
show when I select one of MyEnum entries
' please note that I am speaking about the IDE, not about the running
program
Thanks