Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Lost property?
Message
From
24/04/2005 08:20:51
 
 
To
24/04/2005 08:05:31
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Title:
Environment versions
Visual FoxPro:
VFP 9
Miscellaneous
Thread ID:
01007870
Message ID:
01007881
Views:
10
Hello,

there no buildin syntax to do it ..

you can archieve it manually e.g.:

yourForm.Init():
THIS.AddObject('someName','yourClass')
THIS.someName.Top = 25
THIS.someName.Left = 10
...

or let the init event of your class accept the position
e.g.

yourClass.Init():
LPARAMETERS nTop, nBottom, nLeft, nRight
THIS.Top = nTop
THIS.Bottom = nBottom
....

then in yourForm.Init()
THIS.AddObject('someName','yourClass',25,10,10,25)

Regards
Christian
Previous
Reply
Map
View

Click here to load this message in the networking platform