yes I do have "Read Events
it's like this "use 'table.dbf
allmost every Form of my program cotain this comman
what should I do?

Re: exe problem by Eric

Eric
Mon May 17 00:41:09 CDT 2004

Hello, Maier!
You wrote on Sun, 16 May 2004 07:31:02 -0700:

M> yes I do have "Read Events"
M> it's like this "use 'table.dbf'
M> allmost every Form of my program cotain this command
M> what should I do?

What exactly is the problem?
--
Eric den Doop
www.foxite.com - The Home Of The Visual FoxPro Experts - Powered By VFP8



Re: exe problem by anonymous

anonymous
Mon May 17 05:46:05 CDT 2004

my problem is that my application closes instatanely when I make it an exe, if i'm fast I can see my menus and form
afer that closes. and i copied the 2 dll's in the directory of the program and still the same efec
but my forms contains "Read event" like this "use 'table.dbf
I tried without "read event" and the same effect

Re: exe problem by Eric

Eric
Mon May 17 06:28:41 CDT 2004

Hello, Maier!
You wrote on Mon, 17 May 2004 03:46:05 -0700:

M> my problem is that my application closes instatanely when I make it an
M> exe, if i'm fast I can see my menus and forms afer that closes. and i
M> copied the 2 dll's in the directory of the program and still the same
M> efect but my forms contains "Read event" like this "use 'table.dbf"
M> I tried without "read event" and the same effect

I think your READ EVENTS line not executed. Where do you execute the
command?

Try:
* main.prg
DO yourmainmenu.mpr
READ EVENTS

or:
* main.prg
DO FORM yourmainform
READ EVENTS
--
Eric den Doop
www.foxite.com - The Home Of The Visual FoxPro Experts - Powered By VFP8



Re: exe problem by Tony

Tony
Mon May 17 19:55:42 CDT 2004

Maier,
Try making the form Modal in Window Type procedure or use the Read
Event command the next line after you call the form.
Tony

"Maier" <rechinu_1@yahoo.com> wrote in message
news:EEA9DD5A-CFC0-44FE-8630-07178FD45B46@microsoft.com...
yes I do have "Read Events"
it's like this "use 'table.dbf'
allmost every Form of my program cotain this command
what should I do?