Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
QuestionQUIZ Pin
kibromg28-Nov-08 0:59
kibromg28-Nov-08 0:59 
AnswerRe: QUIZ Pin
tonyjsebastian128-Nov-08 1:04
tonyjsebastian128-Nov-08 1:04 
GeneralRe: QUIZ Pin
kibromg28-Nov-08 1:16
kibromg28-Nov-08 1:16 
AnswerRe: QUIZ Pin
Ashfield28-Nov-08 8:49
Ashfield28-Nov-08 8:49 
QuestionTool tip on textbox URGENT Pin
tonyjsebastian128-Nov-08 0:20
tonyjsebastian128-Nov-08 0:20 
AnswerRe: Tool tip on textbox URGENT Pin
V.28-Nov-08 0:28
professionalV.28-Nov-08 0:28 
GeneralRe: Tool tip on textbox URGENT Pin
tonyjsebastian128-Nov-08 1:09
tonyjsebastian128-Nov-08 1:09 
GeneralRe: Tool tip on textbox URGENT Pin
V.28-Nov-08 1:33
professionalV.28-Nov-08 1:33 
thanks.
30 seconds of MSDN showed me:
it's probably in C++ that you have to "Enable" or something.

C# Copy Code
      // This example assumes that the Form_Load event handling method
      // is connected to the Load event of the form.
      private void Form1_Load(object sender, System.EventArgs e)
      {
         // Create the ToolTip and associate with the Form container.
         ToolTip toolTip1 = new ToolTip();

         // Set up the delays for the ToolTip.
         toolTip1.AutoPopDelay = 5000;
         toolTip1.InitialDelay = 1000;
         toolTip1.ReshowDelay = 500;
         // Force the ToolTip text to be displayed whether or not the form is active.
         toolTip1.ShowAlways = true;
            
         // Set up the ToolTip text for the Button and Checkbox.
         toolTip1.SetToolTip(this.button1, "My button1");
         toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
      }


V.

Stop smoking so you can: Enjoy longer the money you save.
Moviereview Archive

AnswerRe: Tool tip on textbox URGENT Pin
Simon P Stevens28-Nov-08 0:33
Simon P Stevens28-Nov-08 0:33 
GeneralRe: Tool tip on textbox Pin
tonyjsebastian128-Nov-08 1:00
tonyjsebastian128-Nov-08 1:00 
GeneralRe: Tool tip on textbox Pin
Simon P Stevens28-Nov-08 3:23
Simon P Stevens28-Nov-08 3:23 
GeneralRe: Tool tip on textbox URGENT Pin
Tom Deketelaere28-Nov-08 2:01
professionalTom Deketelaere28-Nov-08 2:01 
GeneralRe: Tool tip on textbox Pin
tonyjsebastian128-Nov-08 2:15
tonyjsebastian128-Nov-08 2:15 
QuestionProblem in crystal reports Pin
vijaylumar28-Nov-08 0:11
vijaylumar28-Nov-08 0:11 
JokeRe: Problem in crystal reports Pin
nelsonpaixao30-Nov-08 4:23
nelsonpaixao30-Nov-08 4:23 
QuestionHow to get values from dynamica generated HTML control Pin
Exelioindia27-Nov-08 23:40
Exelioindia27-Nov-08 23:40 
AnswerRe: How to get values from dynamica generated HTML control Pin
leppie28-Nov-08 0:09
leppie28-Nov-08 0:09 
AnswerRe: How to get values from dynamica generated HTML control Pin
Guffa28-Nov-08 3:53
Guffa28-Nov-08 3:53 
Questionregarding speach SDK5.1 Pin
Seraph_summer27-Nov-08 23:37
Seraph_summer27-Nov-08 23:37 
AnswerRe: regarding speach SDK5.1 Pin
Wendelius28-Nov-08 9:19
mentorWendelius28-Nov-08 9:19 
QuestionNeed help Marshaling in C# Pin
Tunçay Şanlı27-Nov-08 23:15
Tunçay Şanlı27-Nov-08 23:15 
AnswerRe: Need help Marshaling in C# PinPopular
leppie27-Nov-08 23:23
leppie27-Nov-08 23:23 
GeneralRe: Need help Marshaling in C# Pin
Tunçay Şanlı1-Dec-08 0:26
Tunçay Şanlı1-Dec-08 0:26 
QuestionVideo streaming Pin
resna.s27-Nov-08 22:11
resna.s27-Nov-08 22:11 
AnswerRe: Video streaming Pin
Simon P Stevens27-Nov-08 23:01
Simon P Stevens27-Nov-08 23:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.