@uidialog
Posted: Mon Jan 04, 2010 2:09 pm
Hi Guys, how's your new year so far?
I have a question about @uidialog - if I want to write a statement that contains a loop, how should I do it?
(I know the code's not working.) Ultimately I want the dialog box to use radio buttons instead of text, but as a test, I bet it's safer to start with something simple (yet it's still not working). Any thoughts? Please let me know. Thanks.
Tchaithonov
I have a question about @uidialog - if I want to write a statement that contains a loop, how should I do it?
Code: Select all
for !i = 1 to 3
%val = @str(!i)
%test = %test + "," + "Text" + "," + %val
next
@uidialog("Caption", %cap_name, %test)
Tchaithonov