i have a form set up that uses wxDEFAULT_DIALOG_STYLE. Given certain conditions, I want its width to grow from 780 to 1200. I've tried
wxFrame->SetSize(1200,900);
and
wxFrameBase->SetClientSize(1200,900);
but that doesn't work. I get an error:
1071|error: expected unqualified-id before '->' token|
I know I'll get rocks thrown at me, but I can't figure this out.
You need to use the object name instead of the class name is my guess.
But, it is a off topic question for this site; that is best asked on https://forums.wxwidgets.org/ (https://forums.wxwidgets.org/)
Tim S.
Will do. Thanks.