Re: Screen dimensions
- Posted by buzzo Nov 15, 2014
- 1567 views
This code will place the full size screen properly relative to the taskbar.. regardless of its' location.
-- code WinFrame = create( wxFrame, {0, -1, "Program Name", 1, 1, winWidth, winHeight, wxDEFAULT_FRAME_STYLE + wxMAXIMIZE } ) -- code show_fullscreen ( WinFrame, 0, 1) wxMain( WinFrame )
using wxMAXIMIZE did the trick for my needs

