I need to find out why the CToolTipCtrl's tooltips are showing up behind all of my dialogs/property sheets in Windows 95 and 98. Can someone shed some light on this subject, and suggest a fix? This is rather odd as they work perfectly fine in Windows NT 4.0, and Windows 2000.
CToolTipCtrl m_Tooltip;

// In the constructor of the class I do the following:
m_Tooltip.Create(this);
m_Tooltip.Activate(TRUE);



The only thing I can think of is the "this" in the create function call, but that just specifies the parent window that the tooltip should report to. I guess I would expect the tooltip to show up behind the dialogs if I left that NULL or something, but because it has a parent window, I'm confused..

Thanks in advance..

- Troy