Click here to Skip to main content
15,898,374 members
Home / Discussions / C#
   

C#

 
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 
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 
Hello,
A few days ago posted a question about how to "tie" a button event to draw a line onto a WinForm. One of the line coordinates will come from the value in a NumericUpDown control.
I was given an answer on how to do this, and it was a very good answer in that I should do all my drawing in the paint event handler and so on. But where I'm stuck is
in getting the line to draw only when the Button is clicked. I know I need some sort of
bool flag to draw the line when the button is clicked.
So to diagram ->

//Fragment 1.
private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
Graphics g = e.Graphics;
DrawMyLine(g);
}
//Fragment 2.
public void DrawMyLine(Graphics g)
{
g.DrawLine(somePen, 0, 0, 100, this.numericUpDown1.Value);
}

//Fragment 3. Want to draw line only if Button is clicked...
private void DrawA_Click(object sender, System.EventArgs e)
{
//??
}

//Fragment 4. How to fit in the bool flag?

Many thanks in advance......










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 
GeneralRe: Unable to see underlined shorcuts in main menu Pin
TheBlindWatchmaker26-Nov-05 8:32
TheBlindWatchmaker26-Nov-05 8:32 
Questionproperties vs public fields Pin
hypermegachi26-Nov-05 7:04
hypermegachi26-Nov-05 7:04 
AnswerRe: properties vs public fields Pin
Colin Angus Mackay26-Nov-05 7:23
Colin Angus Mackay26-Nov-05 7:23 
GeneralRe: properties vs public fields Pin
hypermegachi26-Nov-05 12:13
hypermegachi26-Nov-05 12:13 

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.