Click here to Skip to main content
15,900,725 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to make documentation for dll? Pin
leppie6-Feb-06 18:11
leppie6-Feb-06 18:11 
AnswerRe: How to make documentation for dll? Pin
jinzhecheng7-Feb-06 9:18
jinzhecheng7-Feb-06 9:18 
QuestionExtract Text from RTF File Pin
emran8346-Feb-06 12:40
emran8346-Feb-06 12:40 
AnswerRe: Extract Text from RTF File Pin
jayvardhanpatil6-Feb-06 18:07
jayvardhanpatil6-Feb-06 18:07 
QuestionLooping XMLNode Pin
dbenisch6-Feb-06 12:07
dbenisch6-Feb-06 12:07 
AnswerRe: Looping XMLNode Pin
Guffa6-Feb-06 12:51
Guffa6-Feb-06 12:51 
QuestionSet Tooltip to Coordinate Area of Form Pin
jgallen236-Feb-06 11:48
jgallen236-Feb-06 11:48 
AnswerRe: Set Tooltip to Coordinate Area of Form Pin
jgallen236-Feb-06 12:06
jgallen236-Feb-06 12:06 
I figured out one way to do it, but I don't know if it's the most efficient.
This is what I did:
<br />
 private void Form1_MouseMove(object sender, MouseEventArgs e)<br />
        {<br />
            if (e.X > 15 && e.X < 45 && e.Y > 35 && e.Y < 60)<br />
                trackTip.Show("1", this, 20, 45);<br />
            else if (e.X > 45 && e.X < 75 && e.Y > 35 && e.Y < 60)<br />
                trackTip.Show("2", this, 55, 45);<br />
            else<br />
                trackTip.Hide(this);<br />
        }<br />


is this the best way to do it?
QuestionAny Advise?? Service Messages Pin
Chris Cornelius6-Feb-06 10:54
Chris Cornelius6-Feb-06 10:54 
QuestionDataGridView Control .NET 2.0 Pin
usernamed6-Feb-06 9:29
usernamed6-Feb-06 9:29 
AnswerRe: DataGridView Control .NET 2.0 Pin
hpetriffer6-Feb-06 20:20
hpetriffer6-Feb-06 20:20 
AnswerRe: DataGridView Control .NET 2.0 Pin
albCode6-Feb-06 21:08
albCode6-Feb-06 21:08 
QuestionThread-safe Access to Form Controls Pin
LighthouseJ6-Feb-06 8:51
LighthouseJ6-Feb-06 8:51 
AnswerRe: Thread-safe Access to Form Controls Pin
Judah Gabriel Himango6-Feb-06 11:23
sponsorJudah Gabriel Himango6-Feb-06 11:23 
GeneralRe: Thread-safe Access to Form Controls Pin
LighthouseJ6-Feb-06 12:21
LighthouseJ6-Feb-06 12:21 
GeneralRe: Thread-safe Access to Form Controls Pin
LighthouseJ6-Feb-06 15:46
LighthouseJ6-Feb-06 15:46 
GeneralRe: Thread-safe Access to Form Controls Pin
Judah Gabriel Himango6-Feb-06 16:09
sponsorJudah Gabriel Himango6-Feb-06 16:09 
GeneralRe: Thread-safe Access to Form Controls Pin
LighthouseJ6-Feb-06 16:44
LighthouseJ6-Feb-06 16:44 
Questionexport text/reports in XLS, HTML, PDF, DBF, XML... format Pin
MihaiChioariu6-Feb-06 8:23
MihaiChioariu6-Feb-06 8:23 
Questionweather report service Pin
balkang6-Feb-06 8:09
balkang6-Feb-06 8:09 
AnswerRe: weather report service Pin
usernamed6-Feb-06 9:38
usernamed6-Feb-06 9:38 
QuestionDrawLine question Pin
QzRz6-Feb-06 7:23
QzRz6-Feb-06 7:23 
AnswerRe: DrawLine question Pin
Guffa6-Feb-06 7:55
Guffa6-Feb-06 7:55 
QuestionHow to generate 16digit Random number using C# Pin
n_satisha6-Feb-06 7:21
n_satisha6-Feb-06 7:21 
AnswerRe: How to generate 16digit Random number using C# Pin
Colin Angus Mackay6-Feb-06 7:41
Colin Angus Mackay6-Feb-06 7:41 

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.