[Iup-users] how to disable iup's own error reporting dialog

2016-12-01 Thread Ulrich Schmidt
Hi. I compiled a minimal compact iuplua module on windows. It works well but it has its own error dialog popping up on runtime errors. I want to disable this dialog, so errors fall thru down to native lua. Question: How can i disable this iup dialog? Is it possible from my lua code or do i need t

Re: [Iup-users] how to disable iup's own error reporting dialog

2016-12-01 Thread Antonio Scuri
On Thu, Dec 1, 2016 at 3:43 PM, Ulrich Schmidt wrote: > Hi. > > I compiled a minimal compact iuplua module on windows. It works well but it > has its own error dialog popping up on runtime errors. I want to disable > this > dialog, so errors fall thru down to native lua. > > Question: How can i d

Re: [Iup-users] how to disable iup's own error reporting dialog

2016-12-01 Thread Antonio Scuri
Hi, Simply overwrite the "iup._ERRORMESSAGE(msg)" function. Can be: iup._ERRORMESSAGE = print Best, Scuri On Thu, Dec 1, 2016 at 5:11 PM, Antonio Scuri wrote: > > > On Thu, Dec 1, 2016 at 3:43 PM, Ulrich Schmidt wrote: > >> Hi. >> >> I compiled a minimal compact iuplua module on windows

Re: [Iup-users] how to disable iup's own error reporting dialog

2016-12-01 Thread Ulrich Schmidt
Thank you very much. Ulrich. Am 01.12.2016 um 20:12 schrieb Antonio Scuri: > Hi, > > Simply overwrite the "iup._ERRORMESSAGE(msg)" function. Can be: > > iup._ERRORMESSAGE = print > > Best, > Scuri > > > On Thu, Dec 1, 2016 at 5:11 PM, Antonio Scuri > wrot

[Iup-users] a few thoughts about iup documentation

2016-12-01 Thread Ulrich Schmidt
Hi all. I allmost finished my 1st private program using iup in lua. Compared to wxwidgets the compiled program is much smaller, The learning curve seems to be much steeper caused also from the fact, the documentation is well organized and the content is a great help. But some wishes related to th