Message problem

Yohn

Member
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.
 

tudorconstantin

New Member
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.


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.
 
Top