trouble with the help box

G

Guest

yo dudes,

i have a form with a helpbox in the controlbox. normally when you click the
helpbox the cursor changes to a question mark and when you click somerthing,
a help tooltip comes up. how do i make that tooltip? i know how to make
standard tooltips but how do i make it appear when the helpbox is clicked?

i do hope you get what i mean!

if what i want is impossible, is there a way to make something else happen
when you click the help button e.g. open another form?
 
G

Guest

You could have a boolean member

private bool m_HelpIconClicked = false;

and you can change the value in the event raised when the help button is
clicked.
Then the code for displaying your tool tips can check

if(m_HelpIconClicked)
// do display stuff
 

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

Top