Click here to Skip to main content
15,907,492 members
Home / Discussions / C#
   

C#

 
GeneralRe: [VERY URGENT]!! mouse position and screen resolution Pin
leppie26-Nov-05 22:43
leppie26-Nov-05 22:43 
GeneralRe: [VERY URGENT]!! mouse position and screen resolution Pin
Robert Rohde26-Nov-05 22:49
Robert Rohde26-Nov-05 22:49 
GeneralRe: [VERY URGENT]!! mouse position and screen resolution Pin
leppie26-Nov-05 22:52
leppie26-Nov-05 22:52 
GeneralRe: [VERY URGENT]!! mouse position and screen resolution Pin
Sam 200627-Nov-05 2:04
Sam 200627-Nov-05 2:04 
QuestionWindows User List Pin
rushed26-Nov-05 15:03
rushed26-Nov-05 15:03 
AnswerRe: Windows User List Pin
Curtis Schlak.26-Nov-05 16:02
Curtis Schlak.26-Nov-05 16:02 
QuestionHow to declare/set bool flag + button + NumericUpDown Pin
...---...26-Nov-05 14:22
...---...26-Nov-05 14:22 
AnswerRe: How to declare/set bool flag + button + NumericUpDown Pin
Curtis Schlak.26-Nov-05 14:56
Curtis Schlak.26-Nov-05 14:56 
Would something like this work?
private bool goAheadAndDrawTheLine;

private void Form1_Paint( object sender, System.Windows.Forms.PaintEventArgs e )
{
  Graphics g = e.Graphics;
  DrawMyLine(g);
}

public void DrawMyLine( Graphics g )
{
  if( goAheadAndDrawTheLine )
  {
    g.DrawLine( somePen, 0, 0, 100, this.numericUpDown1.Value );
  }
}

private void DrawA_Click( object sender, System.EventArgs e )
{
  goAheadAndDrawTheLine = true;
}


"we must lose precision to make significant statements about complex systems."
-deKorvin on uncertainty

-- modified at 20:55 Saturday 26th November, 2005

"we must lose precision to make significant statements about complex systems."
-deKorvin on uncertainty
QuestionHTTPModule and a Word Corpus Pin
brunoconde26-Nov-05 9:20
brunoconde26-Nov-05 9:20 
AnswerRe: HTTPModule and a Word Corpus Pin
Curtis Schlak.26-Nov-05 10:14
Curtis Schlak.26-Nov-05 10:14 
QuestionGet position(index) of the row when find in a datatable Pin
karllo26-Nov-05 8:54
karllo26-Nov-05 8:54 
QuestionNumericUpDown + Button + PaintEvent Q2. Pin
...---...26-Nov-05 8:13
...---...26-Nov-05 8:13 
AnswerRe: NumericUpDown + Button + PaintEvent Q2. Pin
Curtis Schlak.26-Nov-05 9:36
Curtis Schlak.26-Nov-05 9:36 
QuestionConvert string to int Pin
Myglaren26-Nov-05 7:47
Myglaren26-Nov-05 7:47 
AnswerRe: Convert string to int Pin
Guffa26-Nov-05 8:44
Guffa26-Nov-05 8:44 
GeneralRe: Convert string to int Pin
Myglaren26-Nov-05 12:03
Myglaren26-Nov-05 12:03 
GeneralRe: Convert string to int Pin
Guffa27-Nov-05 0:43
Guffa27-Nov-05 0:43 
AnswerRe: Convert string to int Pin
Curtis Schlak.26-Nov-05 10:21
Curtis Schlak.26-Nov-05 10:21 
QuestionIdentify caller of a function Pin
User 665826-Nov-05 7:45
User 665826-Nov-05 7:45 
AnswerRe: Identify caller of a function Pin
Curtis Schlak.26-Nov-05 9:33
Curtis Schlak.26-Nov-05 9:33 
GeneralRe: Identify caller of a function Pin
User 665826-Nov-05 13:27
User 665826-Nov-05 13:27 
AnswerRe: Identify caller of a function Pin
leppie26-Nov-05 22:50
leppie26-Nov-05 22:50 
GeneralRe: Identify caller of a function Pin
User 665827-Nov-05 6:01
User 665827-Nov-05 6:01 
QuestionUnable to see underlined shorcuts in main menu Pin
TheBlindWatchmaker26-Nov-05 7:38
TheBlindWatchmaker26-Nov-05 7:38 
AnswerRe: Unable to see underlined shorcuts in main menu Pin
Dave Kreskowiak26-Nov-05 8:19
mveDave Kreskowiak26-Nov-05 8:19 

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.