I still cannot get a working standalone.
I placed an answer at the end of the startup handler and I can see it when I 
launch the standalone.
However, Win XP displays a dialog like this : "This program must quit... 
Windows not handled exception error...etc.

I am frustrated to have a project which is working properly and to be unable to 
produce 
a standalone.

Your help will be greatly appreciated.

Thanks to all,

Roger



-----Message d'origine-----
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Roger Amar
Envoyé : dimanche 27 février 2005 18:53
À : [EMAIL PROTECTED]; How to use Revolution
Objet : RE: Win32 standalone

Thanks a lot, Xavier, good idea.
I'll try it and report to the list.

Roger
 

-----Message d'origine-----
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de MisterX Envoyé : 
dimanche 27 février 2005 11:14 À : 'How to use Revolution'
Objet : RE: Win32 standalone

No I haven't. But I would make a written log of the operations in the scripts 
that you output to a log file. This way you can find out which is the offending 
command. This beats removing all the scrips until you find the offending call.

local logfile

on reportlog callinghandling,thelogresult
  if logfile is empty then put getlogfilepath() into logfile
  open file logfile for appending
  write thelogresult to file logfile
  close file logfile
end reportlog

function getlogfilepath
  get the effective filepath of this stack
  set the itemdelimiter to "/"
  delete last item of it
  put "/" & the short name of this stack & ".log" after it
  return it
end getlogfilepath

on whatever
  do something
  reportlog whatever,"did something at" && thetime && "with result" && the 
result && etc...
end whatever

cheers
Xavier
--
http://monsieurx.com - just nitrous!

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Roger 
> Amar
> Sent: Sunday, February 27, 2005 10:29
> To: How to use Revolution
> Subject: Win32 standalone
> 
> Hello all,
> 
> I converted a project which is working fine in the IDE, to a
> Win32 standalone.
> When I attempt to launch it, it hangs with the "Windows exception not 
> handled" error, when the startup handler finishes.
> This project is using the Valentina dll.
> 
> Has anyone met this issue before ?
> 
> Thanks for help,
> 
> Roger
> 
> 
> 
> 
> 
> 
> _______________________________________________
> use-revolution mailing list
> use-revolution@lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to