dbTalk Databases Forums  

Paradox and Vista

comp.databases.paradox comp.databases.paradox


Discuss Paradox and Vista in the comp.databases.paradox forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Oscar Santiesteban
 
Posts: n/a

Default Paradox and Vista - 06-17-2008 , 07:50 PM






I tried Paradox Runtime 9 on MS Vista last year and kept getting an error on
exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I just
hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am I
missing something here? Is there a workaround for this? I know it is not
my program, b/c I just get into Paradox, then exit out and get the error.

Any insight?

Thanks,
Oscar



Reply With Quote
  #2  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM







Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #3  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #4  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #5  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #6  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #7  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
  #8  
Old   
Tony McGuire
 
Posts: n/a

Default Re: Paradox and Vista - 06-17-2008 , 10:56 PM




Quote:
my program, b/c I just get into Paradox, then exit out and get the
error.

Any insight?

Error message on exit well known. In a startup script, I use the
following. The script then wait()s on a mainmenu form. You'll need
to adapt to your environment.

Note that ALL of the below could be done from within a form at exit.
In my case, I have the startup script doing some other stuff after the
menu form closes, so I incorporated into the startup script. Your
environment, your choice.


var
dysys dynarray[] anytype
endvar

; beginning of script, to figure out whether to exit for Vista
sysinfo(dySys)


try
s=dySys["WindowsVersion"]
s=s.substr(1,1) ;s.view()
if s="6" then ;Vista
writeenvironmentstring("Vista","Y")
else
writeenvironmentstring("Vista","N")
endif
onfail
errorclear()
endtry


; other startup stuff
; open mainmenu form, and wait
; on exiting from mainmenu form, below will shut down RUNTIME -
; you'll need to adjust for shutting down FULL.


try
if readenvironmentstring("Vista")="Y" then
exit()
Execute("TaskKill.exe /IM PDXRWN32.exe /F /T", No, ExeHidden)
return
endif
onfail
errorclear()
exit()
return
endtry



The above is the only bulletproof workaround (as reported by others
and used myself) that I am aware of.


------------------------------
Tony McGuire
http://www.wjCityCouncil.com
http://www.thewholevalley.com
http://www.westjordandogpark.com
________________________________
"Oscar Santiesteban" <o_santiesteban (AT) bellsouth (DOT) net> wrote

Quote:
I tried Paradox Runtime 9 on MS Vista last year and kept getting an
error on exiting Paradox. It just says that PF Runtime has stopped
working.....Windows is collecting information. Few seconds later, I
just hit the CLOSE PROGRAM.

Today I tried Paradox Runtime 11 and experienced the same thing. Am
I missing something here? Is there a workaround for this? I know
it is not my program, b/c I just get into Paradox, then exit out and
get the error.

Any insight?

Thanks,
Oscar




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.