in reply to How to Resize a Window in M$ Windows?
Since you have a handle, not a Win32::GUI object, you can't call Resize() as a method, you have to call it as a function, passing the handle as the first argument. Example:
Win32::GUI::Resize($handle, $new_width, $new_height);
The same goes for most other methods in the Win32::GUI module.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to Resize a Window in M$ Windows?
by Anonymous Monk on Feb 10, 2011 at 08:34 UTC | |
by kejohm (Hermit) on Feb 10, 2011 at 11:36 UTC | |
by Anonymous Monk on Feb 10, 2011 at 13:06 UTC | |
by kejohm (Hermit) on Feb 11, 2011 at 04:42 UTC |