Button alt/description

  • Thread starter Thread starter Mrozu
  • Start date Start date
M

Mrozu

Hi

I need code which show me , when cursor of mouse will be over button
short his description(on yellow background, i should know about what
i'm talking:)). Such as HTML ALT in <a href>. I sow it in many
programs, but i can't do that in mine.



Mrozu
 
Mrozu said:
I need code which show me , when cursor of mouse will be over button
short his description(on yellow background, i should know about what
i'm talking:)). Such as HTML ALT in <a href>. I sow it in many
programs, but i can't do that in mine.

Windows Forms:

Add a tooltip component to the form (the component is available in the
toolbox), then set the control's 'ToolTip1 on <button name>' property of the
button to the tooltip text.

Web Forms:

If you are using Web Forms, you may want to add a 'title' attribute to the
'input' element. Note that the 'alt' attribute cannot be used together with
the 'a' element.
 

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

Back
Top