1. How do I REMOVE the icon of a window? 2. If I have three menu items, and I want one (the last) align to the left, how do I do that?
my $Menu = Win32::GUI::MakeMenu( "&Menu1" => "Menu1", "&Menu2" => "Menu2", "&Menu3" => "Menu3", ); I tried: "&Menu3" => { align => "left" }, but that doesnt work. 3. Is there any documentation about "Win32::GUI::MakeMenu"? I just found "Win32::GUI::Menu" and there is near no information :/ 4. If I have a listview with 2 columns, how do I insert an item into the 2. column? I appreciate every little help!