I created a form xyz with a page-frame-object on it.
In the init-event of the form I wrote this to make the tabs
on the pageframe alphabetically:
*Init-Event in the form.
*Alphabet to place on Pageframe1
FOR i = 1 TO thisform.Pageframe1.PageCount
STORE "page"+ALLTRIM(STR(i))+"." TO zaehler
thisform.pageframe1.&zaehler.caption = CHR(64+i)
ENDFOR
thisform.Show
Worked well if I start this form external from a project.
But then I wanted to make a trial by making a standalone-exe-file from this and added the form and a short *.prg-Program (code only with "do form xyz") to a project.
But when I started the project to make the *.exe then VFP says " library visual classes _base not found".
What do I have to do?
Sorry it is the first time that I want to create a standalone-exe from a VFP-Program.
In the init-event of the form I wrote this to make the tabs
on the pageframe alphabetically:
*Init-Event in the form.
*Alphabet to place on Pageframe1
FOR i = 1 TO thisform.Pageframe1.PageCount
STORE "page"+ALLTRIM(STR(i))+"." TO zaehler
thisform.pageframe1.&zaehler.caption = CHR(64+i)
ENDFOR
thisform.Show
Worked well if I start this form external from a project.
But then I wanted to make a trial by making a standalone-exe-file from this and added the form and a short *.prg-Program (code only with "do form xyz") to a project.
But when I started the project to make the *.exe then VFP says " library visual classes _base not found".
What do I have to do?
Sorry it is the first time that I want to create a standalone-exe from a VFP-Program.