Subject Re: Modal Form
From Don <dons@home.com>
Date Fri, 23 Feb 2018 09:42:26 -0500
Newsgroups dbase.getting-started



Hi Don,

Dbase is a RAD environment. First create a form in dbase with the
designer. Then use the code below to open the newly created form.


Openform()

function openform
Local v
set procedure to test.wfm ADDITIVE
  create session
v = new testform()
v.mdi = .F.
v.open()
?"form now open"
wait ""
v.close()
close procedure test.wfm

return


Don Wrote:
>

> I cant get one to pop up on my screen. I am using the standard boot
> strap code I find every where, but no luck


My Code as written will open a "Modeless Form" Open()  but I wanted a
"Modal Form" to open with ReadModal()
Don