Hello,

A standalone can quit on pre-Win7 but not on Win7.

Here's the relevant scripts for the card and the stack:

on closeStackRequest
   lock messages
   -- MySql
   put revOpenDatabases() into myDatabases
   repeat for each item myBase in myDatabases
      revCloseDatabase myBase
   end repeat
   -- stop using stacks
   put the stacksInUse into myStacks
   repeat for each line myStack in myStacks
      stop using stack myStack
   end repeat
   -- stacks
   put the openStacks into myStacks
   put "message box,home,tool,Message Box,revTools,revMenubar" & comma
& the short name of me into myDontClose
   repeat for each line myStack in myStacks
      if myStack is not among the items of myDontClose then close stack myStack
   end repeat
   -- messages
   put the pendingmessages into myMsgs
   repeat for each line myMsg in myMsgs
      cancel item 1 of myMsg
   end repeat
   set the backdrop to none
   unlock messages
   if the environment is not "development" then
      pass closeStackRequest
   end if
end closeStackRequest

on closeStack
   quit
end closeStack


Any ideas?   Thanks.

--
Nicolas Cueto

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to