Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

manipulating one form from another

Status
Not open for further replies.

theprophet

Programmer
Nov 2, 2000
16
US
Let's say I have a project with two forms, A and B. A calls B. Is there anyway to control properties and methods of form B from form A without using parameters?
 
You can instantiate some sort of application object which will be available throughout the application. Store the PEM's you need in this object.

Jim
 
theprophet

Providing you call form B from form A with:-

DO FORM formB NAME oFormB LINKED

you can use

WITH oFormB
[tab].Left = n
[tab].Refresh()
ENDW

Chris :)


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top