j_sen21

j_sen21

  • NA
  • 57
  • 0

Hover over Button text

Nov 6 2007 2:29 PM

I think ive tried evertying. The best I can do without doing graphics coding is to create a hover event for the button and then in the function call a messagebox which shows up once.  HELPPPP :) I can add a tooltip and when you hover over the button, the damn message will show up more than once. gpsInfo is the name of the button.

private void gpsInfo_MouseHover(object sender, EventArgs e)

{

// MessageBox.Show("All the text I can do");

ToolTip tp = new ToolTip();

tp.Show("Exterior",gpsInfo);

}

Thanks