How to set ToolTip to control pragmatically in Windows form application?
Ankush Singh
Select an image from your device to upload
System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();ToolTip1.SetToolTip(this.textBox1, “Hello”);
The tooltip will be set over the control “textBox1”.