Reputation: 447
in Visual Foxpro, I need to work with two forms concurrently. When I invoke the second form, from the first form, I need the second form to stay open, when I do some work on the original form. Presently the second form closes immediately, if I should try to click on any element in the first form.
The way I call the second form is this:
DO FORM imagez WITH ThisForm.pf1.page4.image7, this_form
READ EVENTS
Any ideas would be appreciated.
The form properties of both forms are:
DeskTop = .T. ShowWindow = 2 - As Top-Level-Form
Upvotes: 1
Views: 1430
Reputation: 447
My above solution works. I had a ThisForm.Release()
command installed in the LostFocus event...
My apologies to all...
Dennis
Upvotes: 2