ewidjaja
(elvin widjaya)
1
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
klincecum
(Kevin Lincecum)
2
1 Like
klincecum
(Kevin Lincecum)
3
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