Tooltips

R

ReneMarxis

Hello

i am havin problems with tooltips.
I have one very simple Form with just 2 Textbox. One having an Tooltip
one not.
I can see the tooltip as long as the one textbox that has the tooltip
did not have the focus. If clicked once the tooltip will not show up
any more.

Is this normal?

Here is the code i use to add the tooltip:

public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e) {
ToolTip toolTip1 = new ToolTip();
toolTip1.AutoPopDelay = 5000;
toolTip1.InitialDelay = 1000;
toolTip1.ReshowDelay = 500;
toolTip1.ShowAlways = true;
toolTip1.SetToolTip(fText, "Hallo");
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top