04-04-2019, 03:29 AM
meaning no matter what you enter in the dialog the abbreviation will always be "text" and the comment aka what you call a description will always be "description"
alot of this is absolutely wrong
str controls = "3 4 5 6"
str e3 e4 cb5 lb6
e3="text"
e4="description"
str s1 s2
s1=e3
s2=e4
cb5=_s
lb6=_s
if(!ShowDialog(dd 0 &controls)) ret
with this no matter what you enter in the dialog e3 will always be text and e4 will always be description
to get values of controls when the dialog closes you need to get them after ShowDialog returns
like so
alot of this is absolutely wrong
str controls = "3 4 5 6"
str e3 e4 cb5 lb6
e3="text"
e4="description"
str s1 s2
s1=e3
s2=e4
cb5=_s
lb6=_s
if(!ShowDialog(dd 0 &controls)) ret
with this no matter what you enter in the dialog e3 will always be text and e4 will always be description
to get values of controls when the dialog closes you need to get them after ShowDialog returns
like so