Search found 4 matches

by ctz
Tue Sep 28, 2004 11:15 am
Forum: C++ Development
Topic: Using objects from DLL
Replies: 5
Views: 3477

I just finished an application which uses plugin dlls. Both the application and plugins are linked dynamically to wx, so the dlls and application are around 50KB each :) Here is some code, first my "Tool" class which all valid plugins must subclass. This also includes a very important #def...
by ctz
Thu Sep 16, 2004 3:43 am
Forum: C++ Development
Topic: wxTreeCtrl - strange behaviour
Replies: 5
Views: 2690

Hackbert wrote:The page seem to have moved to another URL. I don't know the name of the patch so I could not search it by hand on the microsoft page. Any ideas?
I think this might be it.

If not you might also get a new comctl32.dll by upgrading IE.
by ctz
Tue Sep 14, 2004 1:01 am
Forum: C++ Development
Topic: wxTreeCtrl - strange behaviour
Replies: 5
Views: 2690

From the docs Win32 notes wxTreeCtrl class uses the standard common treeview control under Win32 implemented in the system library comctl32.dll. Some versions of this library are known to have bugs with handling the tree control colours: the usual symptom is that the expanded items leave black (or o...
by ctz
Mon Sep 13, 2004 6:22 pm
Forum: The Code Dump
Topic: wxTaskBarIcon with Balloon tooltips!
Replies: 39
Views: 28215

wxTaskBarIcon with Balloon tooltips!

This class extends wxTaskBarIcon to offer balloon tooltips! It works very well in my application qDong : http://www.orgx.com/qdong/qdong_online.png class QDongTaskIcon : public wxTaskBarIcon { public: QDongTaskIcon(); bool ShowBalloon(wxString title, wxString message, unsigned int timeout = 10000, i...