ToolTip Text

Adding Tool Tip Text To Form Components Add this to the global variables & classes declarations private: ToolTip^ toolTip1; Add this to the constructor //—– CREATE TOOL TIP TEXT —– toolTip1 = gcnew ToolTip; Add this to the formLoad Event //——————————- //—– SETUP TOOL TIP TEXT —– //——————————- toolTip1->AutoPopDelay = 5000; //mS – time ToolTip […]

Read More