Re: message_box() with eui=OK, after bind = not OK - RESOLVED
- Posted by sergelli Aug 15, 2010
- 1299 views
Thank you Chris!
Once again you helped precisely, with clear shot on target.
The variable that was causing mistakes to be empty was "msgbox_id" within the file C: \ 40b3-euphoria \ include \ msgbox.e in message_box function ()
The reason is because the function platform() returns DOS32 not WIN32 in my system.
The file "msgbox.e" does not allow open DLLs for system alternatives like DOS32 and LINUX.
I changed the line
IF platform () = WIN32 then
to
IF platform () = WIN32 or platform () = DOS32 then
and is now working OK
strange that with eui and euiw, worked well even without the above correction
Thank you