Phil Thoms
Programmer
In VFP 6 is it possible to run or create a form within another form similar to defining a window within another window ?
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
where would the user place search criteria after say he has hit a button labelled Find or Search ?
* --- Somewhere within one of the Primary Form methods ---
* --- Perhaps in the Search Button Click Method ---
* --- Temporarily Hide This Form ---
ThisForm.Hide
* --- Run/Display Secondary Form ---
DO "OtherForm.scx"
* --- When Done with secondary form, have this one re-appear ---
ThisForm.Show