Click here to Skip to main content
15,915,324 members
Home / Discussions / C#
   

C#

 
QuestionI am making C# program that interacts with webpage.get js val exec js function Pin
(kcd)6-Jul-07 3:36
(kcd)6-Jul-07 3:36 
QuestionGenerate AxInterop files Pin
Laurent.iss6-Jul-07 3:29
Laurent.iss6-Jul-07 3:29 
QuestionUpdate designer after updating a property Pin
Christopher Stratmann6-Jul-07 3:06
Christopher Stratmann6-Jul-07 3:06 
AnswerRe: Update designer after updating a property Pin
snorkie6-Jul-07 4:14
professionalsnorkie6-Jul-07 4:14 
GeneralRe: Update designer after updating a property Pin
Christopher Stratmann6-Jul-07 4:28
Christopher Stratmann6-Jul-07 4:28 
AnswerRe: Update designer after updating a property Pin
Martin#6-Jul-07 6:57
Martin#6-Jul-07 6:57 
QuestionTool tip text in a button Pin
-spy-6-Jul-07 2:45
-spy-6-Jul-07 2:45 
AnswerRe: Tool tip text in a button Pin
kubben6-Jul-07 2:56
kubben6-Jul-07 2:56 
I think you are talking about in windows. Here is some sample code form microsoft help:
// 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");
}


Hope that helps.
Ben
QuestionGDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 2:31
oliiix6-Jul-07 2:31 
AnswerRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
Luc Pattyn6-Jul-07 2:57
sitebuilderLuc Pattyn6-Jul-07 2:57 
GeneralRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 3:56
oliiix6-Jul-07 3:56 
GeneralRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
Luc Pattyn6-Jul-07 4:09
sitebuilderLuc Pattyn6-Jul-07 4:09 
AnswerRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 4:20
oliiix6-Jul-07 4:20 
QuestionHow to set The Break point Condition in vs.NET Pin
Hum Dum6-Jul-07 2:20
Hum Dum6-Jul-07 2:20 
AnswerRe: How to set The Break point Condition in vs.NET Pin
kubben6-Jul-07 2:51
kubben6-Jul-07 2:51 
QuestionDialog event Pin
Maddie from Dartford6-Jul-07 1:59
Maddie from Dartford6-Jul-07 1:59 
AnswerRe: Dialog event Pin
Pete O'Hanlon6-Jul-07 2:02
mvePete O'Hanlon6-Jul-07 2:02 
AnswerRe: Dialog event Pin
Martin#6-Jul-07 2:04
Martin#6-Jul-07 2:04 
AnswerRe: Dialog event Pin
Chintan.Desai6-Jul-07 2:13
Chintan.Desai6-Jul-07 2:13 
QuestionNeed Suggestion for best Component Library for C# Pin
logikos6-Jul-07 1:43
logikos6-Jul-07 1:43 
AnswerRe: Need Suggestion for best Component Library for C# Pin
Pete O'Hanlon6-Jul-07 2:01
mvePete O'Hanlon6-Jul-07 2:01 
GeneralRe: Need Suggestion for best Component Library for C# Pin
logikos6-Jul-07 2:24
logikos6-Jul-07 2:24 
GeneralRe: Need Suggestion for best Component Library for C# Pin
Joseph Guadagno6-Jul-07 4:34
Joseph Guadagno6-Jul-07 4:34 
Questionmouse position + map lon/lat C# Pin
mercenary016-Jul-07 1:41
mercenary016-Jul-07 1:41 
AnswerRe: mouse position + map lon/lat C# Pin
Martin#6-Jul-07 1:47
Martin#6-Jul-07 1:47 

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.