in reply to How do I customize the win32 title bar or create my own in Perl way?

MSDN
  • Comment on Re: How do I customize the win32 title bar or create my own in Perl way?

Replies are listed 'Best First'.
Re^2: How do I customize the win32 title bar or create my own in Perl way?
by ZJ.Mike.2009 (Scribe) on Jan 26, 2010 at 02:12 UTC
    Thanks, Anonymous Monk. Looks like there're some good step by step tutorials on how to do the job in C or C# or similar. But I don't know how to rewrite them in Perl.
      Find code written for the bare Win32 API, and load functions with Win32::API->Import, eg
      Win32::API->Import( # http://msdn.microsoft.com/en-us/library/ms644950%28VS.85%29.aspx user32=>'LRESULT SendMessage( HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam )');
        If he's using Win32::GUI, much of that code is already wrapped

        Thanks a lot for the guidance, Anonymous Monk :)