i have a working Xbase++ Version and a HMG Version and now i want to make a FiveWin Version.
FiveWin have this Syntax
Code: Select all
DEFINE WINDOW oWnd
...
ACTIVATE WINDOW oWnd
Code: Select all
FUNCTION CreateForms()
Local i,iMax := 8
Local cForm
FOR i = 1 TO iMax
cForm := "Form_"+strzero(i, 2)
DEFINE DIALOG &cForm FROM nTop, nLeft TO nBottom, nRight
// add Object to Array
AADD(a_Forms, &cForm)
NEXT
RETURN NIL
i did this
Code: Select all
FOR i := 1 TO iMax
cForm := a_Forms[i]
ACTIVATE DIALOG &cForm
NEXT
so how to get a Concept like this working under FiveWin
please help a FiveWin Newbie, thx