Epicor Hover Notes

Hello there,
Do you know if there are any way I can insert “hover notes” into Epicor screens (classic or kinetic)?

Not sure if it is the correct term for it, but I would like for some fields to have some sort of information pop up when a user hovers over them.

Thank you,
Elvin

https://www.epiusers.help/t/tool-tips/50576

1 Like

I just added this to the other thread as well, if you don’t want the Infragistics stuff:

Also do built in windows forms tool tips

	private void UD01Form_Load(object sender, EventArgs args)
	{
	   ToolTip toolTip1 = new ToolTip();
	
	   toolTip1.AutoPopDelay = 5000;
	   toolTip1.InitialDelay = 1000;
	   toolTip1.ReshowDelay = 500;
	   toolTip1.ShowAlways = true;
	   
	   toolTip1.SetToolTip(epiCheckBoxC1, "Woot!");
	}
3 Likes

Awesome! Thank you.