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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

refresh form from another form

Status
Not open for further replies.

engan

Programmer
Jul 15, 2001
53
ID
I have 2 forms ( form a and b). How do I refresh form a from form b ?

Eng An
 
engan

Create a public reference of both forms:
PUBLIC oForm1,oForm2
do form myFormA.scx NAME oForm1
do form myFormB.scx NAME oForm2

Now you can use from oForm1 :
oForm2.Refresh()



Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
name_of_form_a.refresh

Monika from Warszawa (Poland)
(monikai@yahoo.com)
 
Mike, Monikai Thanks for your info. I try and it works.

Eng An
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top