I've got this:

NOTIFYICONDATA m_tray;

m_tray.szTip = "ToolTipText";

but if I do execute I get the error:

Cannot convert char[12] to char[64]

in VB I do this:

m_tray.szTip = "ToolTipText" & chr$(0)

and that works

so how to get this working?

VisualPenguin