Click here to Skip to main content
15,886,689 members
Home / Discussions / C#
   

C#

 
QuestionHelp with DataGridViewComboBoxColumn... Pin
PunkIsNotDead26-Jun-09 9:40
PunkIsNotDead26-Jun-09 9:40 
QuestionGroupbox/panel border problems Pin
Dan Neely26-Jun-09 8:34
Dan Neely26-Jun-09 8:34 
AnswerRe: Groupbox/panel border problems Pin
Luc Pattyn26-Jun-09 9:44
sitebuilderLuc Pattyn26-Jun-09 9:44 
GeneralRe: Groupbox/panel border problems Pin
Dan Neely26-Jun-09 10:05
Dan Neely26-Jun-09 10:05 
GeneralRe: Groupbox/panel border problems Pin
Luc Pattyn26-Jun-09 10:10
sitebuilderLuc Pattyn26-Jun-09 10:10 
GeneralRe: Groupbox/panel border problems Pin
Dan Neely26-Jun-09 10:17
Dan Neely26-Jun-09 10:17 
QuestionProblems with System.Drawing Pin
Rsesky00026-Jun-09 6:10
Rsesky00026-Jun-09 6:10 
AnswerRe: Problems with System.Drawing Pin
musefan26-Jun-09 6:26
musefan26-Jun-09 6:26 
you need to use the Paint event of the form, and do you drawing in there. that way it will draw every time the form needs to paint itself...

use the event args to get the Graphics object too...

private void Form1_Paint(object sender, PaintEventArgs e)
{
Pen myPen = new Pen(System.Drawing.Color.Red, 465);
e.Graphics.DrawLine(myPen, 120, 120, 1200, 1210);
}

Life goes very fast. Tomorrow, today is already yesterday.

GeneralRe: Problems with System.Drawing Pin
Luc Pattyn26-Jun-09 6:51
sitebuilderLuc Pattyn26-Jun-09 6:51 
QuestionCan not set NullValue to Null for numeriacl DataTypes in DataSet designer. Pin
hdv21226-Jun-09 3:51
hdv21226-Jun-09 3:51 
AnswerRe: Can not set NullValue to Null for numeriacl DataTypes in DataSet designer. Pin
Dave Kreskowiak26-Jun-09 5:22
mveDave Kreskowiak26-Jun-09 5:22 
QuestionVideo Processing Image Formats Pin
tvbarnard26-Jun-09 3:25
tvbarnard26-Jun-09 3:25 
AnswerRe: Video Processing Image Formats Pin
Dave Kreskowiak26-Jun-09 5:20
mveDave Kreskowiak26-Jun-09 5:20 
GeneralRe: Video Processing Image Formats Pin
riced26-Jun-09 7:00
riced26-Jun-09 7:00 
AnswerRe: Video Processing Image Formats Pin
Christian Graus26-Jun-09 9:31
protectorChristian Graus26-Jun-09 9:31 
QuestionRe: Video Processing Image Formats Pin
tvbarnard27-Jun-09 6:01
tvbarnard27-Jun-09 6:01 
QuestionBarcoding Pin
ziwez026-Jun-09 2:23
ziwez026-Jun-09 2:23 
AnswerRe: Barcoding Pin
padmanabhan N26-Jun-09 2:26
padmanabhan N26-Jun-09 2:26 
AnswerRe: Barcoding Pin
Enver Maroshi26-Jun-09 2:31
Enver Maroshi26-Jun-09 2:31 
GeneralRe: Barcoding Pin
Manas Bhardwaj26-Jun-09 2:33
professionalManas Bhardwaj26-Jun-09 2:33 
GeneralRe: Barcoding Pin
Enver Maroshi26-Jun-09 2:37
Enver Maroshi26-Jun-09 2:37 
AnswerRe: Barcoding Pin
DaveyM6926-Jun-09 2:54
professionalDaveyM6926-Jun-09 2:54 
AnswerRe: Barcoding Pin
stancrm26-Jun-09 3:11
stancrm26-Jun-09 3:11 
AnswerRe: Barcoding Pin
Rob Philpott26-Jun-09 4:02
Rob Philpott26-Jun-09 4:02 
AnswerRe: Barcoding Pin
Dave Kreskowiak26-Jun-09 5:15
mveDave Kreskowiak26-Jun-09 5:15 

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.