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

C#

 
GeneralRe: Blank datagrid--parameter issue? Pin
leckey22-Jun-06 8:52
leckey22-Jun-06 8:52 
GeneralRe: Blank datagrid--parameter issue? Pin
led mike22-Jun-06 9:49
led mike22-Jun-06 9:49 
GeneralRe: Blank datagrid--parameter issue? Pin
Josh Smith22-Jun-06 10:01
Josh Smith22-Jun-06 10:01 
AnswerRe: Blank datagrid--parameter issue? Pin
Josh Smith22-Jun-06 7:52
Josh Smith22-Jun-06 7:52 
Questionhow to refresh or keep the graphics Pin
donkaiser22-Jun-06 6:37
donkaiser22-Jun-06 6:37 
AnswerRe: how to refresh or keep the graphics Pin
Dustin Metzgar22-Jun-06 6:49
Dustin Metzgar22-Jun-06 6:49 
GeneralRe: how to refresh or keep the graphics Pin
donkaiser22-Jun-06 7:05
donkaiser22-Jun-06 7:05 
GeneralRe: how to refresh or keep the graphics Pin
Dustin Metzgar22-Jun-06 7:33
Dustin Metzgar22-Jun-06 7:33 
Absolutely. Take your form and add a PictureBox control to it. Then in your constructor you can do this:

this.pictureBox1.Image = new Bitmap(this.pictureBox1.Width, this.pictureBox1.Height);
Graphics g = Graphics.FromImage(this.pictureBox1.Image);
g.FillEllipse(Brushes.Red, 5, 5, 50, 50);


You don't have to set anything on PictureBox, just put it on the form.




Logifusion[^]
AnswerRe: how to refresh or keep the graphics Pin
atuldeore22-Jun-06 7:16
atuldeore22-Jun-06 7:16 
QuestionA program to organize and fix data. Pin
Noah Moerbeek22-Jun-06 5:38
Noah Moerbeek22-Jun-06 5:38 
QuestionSelecting leaf node directly !!! Pin
ankushmn22-Jun-06 4:57
ankushmn22-Jun-06 4:57 
AnswerRe: Selecting leaf node directly !!! Pin
Dustin Metzgar22-Jun-06 5:07
Dustin Metzgar22-Jun-06 5:07 
QuestionIIS and Active directory Pin
engsrini22-Jun-06 4:52
engsrini22-Jun-06 4:52 
QuestionZip file creation in C# Pin
coolestCoder22-Jun-06 4:28
coolestCoder22-Jun-06 4:28 
AnswerRe: Zip file creation in C# Pin
Judah Gabriel Himango22-Jun-06 4:42
sponsorJudah Gabriel Himango22-Jun-06 4:42 
QuestionWIA and TakePicture Pin
(Steven Hicks)n+122-Jun-06 4:07
(Steven Hicks)n+122-Jun-06 4:07 
Questionhow to attach file using html file field Pin
ayyp22-Jun-06 3:43
ayyp22-Jun-06 3:43 
Questionserial port data read error ? help please ... Pin
cmpeng3422-Jun-06 3:33
cmpeng3422-Jun-06 3:33 
AnswerRe: serial port data read error ? help please ... [modified] Pin
Judah Gabriel Himango22-Jun-06 4:20
sponsorJudah Gabriel Himango22-Jun-06 4:20 
GeneralMessage Closed Pin
25-Jun-06 22:33
cmpeng3425-Jun-06 22:33 
GeneralRe: serial port data read error ? help please ... Pin
Judah Gabriel Himango26-Jun-06 4:17
sponsorJudah Gabriel Himango26-Jun-06 4:17 
QuestionHow to convert blocking socket to non blocking Pin
Shajeel22-Jun-06 3:17
Shajeel22-Jun-06 3:17 
AnswerRe: How to convert blocking socket to non blocking Pin
Judah Gabriel Himango22-Jun-06 4:19
sponsorJudah Gabriel Himango22-Jun-06 4:19 
QuestionCreating C# files Pin
tom groezer22-Jun-06 2:31
tom groezer22-Jun-06 2:31 
AnswerRe: Creating C# files Pin
Judah Gabriel Himango22-Jun-06 4:17
sponsorJudah Gabriel Himango22-Jun-06 4:17 

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.