From: Mattia B. <mb...@ds...> - 2002-08-05 19:32:33
|
> Hi, > > I'm new to wxperl and I find it very hard to find documentation on it > (except for the wxWindows documentation). > If you know some good places on the web where to get simple examples, never > mind sending me the URLs. You probably already looked at them, but there are some tutorials linked fron wxperl.sf.net > By the way, can any of you tell me how to create a non-resizable window > (considering I still didn't quite catch how to use the 'sizer' I'd quite > like to fix the window's size, unless any of you can explain me how this > works). use wxDEFAULT_FRAME_STYLE & ~wxRESIZE_BORDER (for a frame) wxDEFAULT_DIALOG_STYLE & ~wxRESIZE_BORDER (for a dialog) as the style parameters in Wx::Dialog->new and Wx::Frame->new. HTH Mattia |