in reply to Re: How to add icon to status area via Win32::API?
in thread How to add icon to status area via Win32::API?

That's right. I understand Win32::GUI is work. But I use TK. So, it seems I need to use API? Right? But ,THX
  • Comment on Re: Re: How to add icon to status area via Win32::API?

Replies are listed 'Best First'.
Re: Re: Re: How to add icon to status area via Win32::API?
by jplindstrom (Monsignor) on Aug 21, 2001 at 19:02 UTC
    Not neccessarily. Since what you want to implement using Win32::API (with great difficulty I guess) is already present in Win32::GUI, why not use it? The only downside I can see is the overhead.

    It is most likely possible to combine the main event loop in Tk with the one in Win32::GUI; Just call Win32::GUI::DoEvents() as often as possible from within Tk's idle event loop (whatever it is called, I don't know Tk that well).

    /J