RE:More info in IDE instance problem
- Posted by "Judith" <camping at txcyber.com> Feb 11, 2004
- 460 views
Thanks CoJaBo. I now have the problem fixed and an update submitted to RDS. In the meantime you may pick up these changes at http://user.txcyber.com/~camping/judith.html : Recent changes to IDE v0.18.6n: --Configuration item Single Instance when unchecked and saved and IDE reloaded was not used to set multiple instance. --Fixed bug in Syntax: when user presses Enter key and cursor is on a tab position, syntax tabbed the source and then inserted a blank line. --Fixed bug where Parenting when there are multiple layers might not be correct for controls in containers. CoJaBo wrote: When I uncheck the "one instance of IDE" checkbox, it works, BUT if I close it and open it again it won't work unless I uncheck and recheck the checkbox. This doesn't seem to be run when IDE starts and checks the "one instance of IDE" setting: procedure MenuInstance_onClick (integer self, integer event, sequence params)--params is () if not isChecked( MenuInstance ) then --turn on multiple instance w32Proc(xCloseHandle,{hMutex})--When this is run, it works. --it dosn't seem to be run when IDE starts and checks the --"one instance of IDE" setting: end if end procedure