Yohn Member Aug 6, 2008 #1 Hy. I have to display name Yohn ten times in message box when I click on Button. I have to do it with DO variable = 1 TO 10. any ideas how I can do it.
Hy. I have to display name Yohn ten times in message box when I click on Button. I have to do it with DO variable = 1 TO 10. any ideas how I can do it.
P philippoommen1 Member Aug 7, 2008 #2 Please try this MESSAGE FILL("yohn " , 10) VIEW-AS ALERT-BOX INFO BUTTONS OK. Regards Philip
tudorconstantin New Member Aug 13, 2008 #3 Yohn said: Hy. I have to display name Yohn ten times in message box when I click on Button. I have to do it with DO variable = 1 TO 10. any ideas how I can do it. Click to expand... ON CHOOSE OF BUTTON-1 IN FRAME DEFAULT-FRAME /* Button 1 */ DO: define variable i as integer no-undo. do i = 1 to 10: message "yohn" view-as alert-box. end. END.
Yohn said: Hy. I have to display name Yohn ten times in message box when I click on Button. I have to do it with DO variable = 1 TO 10. any ideas how I can do it. Click to expand... ON CHOOSE OF BUTTON-1 IN FRAME DEFAULT-FRAME /* Button 1 */ DO: define variable i as integer no-undo. do i = 1 to 10: message "yohn" view-as alert-box. end. END.