Re: Win32Lib: Weird Window Style Issue
- Posted by "C. K. Lester" <cklester at yahoo.com> Jan 21, 2003
- 437 views
> You are using WS_DLGFRAME incorrectly as Ex flag, so Windows > recognises it as > > #if(WINVER >= 0x0500) > #define WS_EX_LAYOUTRTL 0x00400000L // Right to left mirroring > > You will be ok with this: > > constant Window_Install = createEx( Window, "Forms On-A-Disk AutoInstall", > 0, ScreenWidth/2-225,ScreenHeight/2-125, 450, 250, {WS_DLGFRAME}, 0 ) DOH! I'm a dufus, I admit it... Thanks Martin! :)