Click here to Skip to main content
15,905,028 members
Home / Discussions / C#
   

C#

 
AnswerRe: Port programming Pin
Kristian Sixhøj23-Feb-09 3:05
Kristian Sixhøj23-Feb-09 3:05 
AnswerRe: Port programming Pin
EliottA23-Feb-09 3:17
EliottA23-Feb-09 3:17 
AnswerRe: Port programming Pin
Luc Pattyn23-Feb-09 4:49
sitebuilderLuc Pattyn23-Feb-09 4:49 
AnswerRe: Port programming Pin
0x3c023-Feb-09 7:32
0x3c023-Feb-09 7:32 
Question[STAThread] Pin
lawrenceinba23-Feb-09 2:16
lawrenceinba23-Feb-09 2:16 
AnswerRe: [STAThread] Pin
Deresen23-Feb-09 2:36
Deresen23-Feb-09 2:36 
GeneralRe: [STAThread] Pin
Vikram A Punathambekar23-Feb-09 2:47
Vikram A Punathambekar23-Feb-09 2:47 
AnswerRe: [STAThread] Pin
CPallini23-Feb-09 2:50
mveCPallini23-Feb-09 2:50 
AnswerRe: [STAThread] Pin
#realJSOP23-Feb-09 3:16
professional#realJSOP23-Feb-09 3:16 
GeneralRe: [STAThread] Pin
EliottA23-Feb-09 3:18
EliottA23-Feb-09 3:18 
QuestionRe: [STAThread] Pin
Luc Pattyn23-Feb-09 4:52
sitebuilderLuc Pattyn23-Feb-09 4:52 
GeneralRe: [STAThread] Pin
#realJSOP23-Feb-09 6:02
professional#realJSOP23-Feb-09 6:02 
GeneralRe: [STAThread] Pin
Luc Pattyn23-Feb-09 6:11
sitebuilderLuc Pattyn23-Feb-09 6:11 
QuestionWindows Media Player component Pin
nafsruh23-Feb-09 2:16
nafsruh23-Feb-09 2:16 
AnswerRe: Windows Media Player component Pin
Dave Kreskowiak23-Feb-09 4:58
mveDave Kreskowiak23-Feb-09 4:58 
GeneralRe: Windows Media Player component Pin
nafsruh23-Feb-09 5:27
nafsruh23-Feb-09 5:27 
GeneralRe: Windows Media Player component Pin
Dave Kreskowiak23-Feb-09 6:50
mveDave Kreskowiak23-Feb-09 6:50 
QuestionHow can i attach XAML style file to my C# Project !? Pin
Hadabo23-Feb-09 1:41
Hadabo23-Feb-09 1:41 
AnswerRe: How can i attach XAML style file to my C# Project !? Pin
Pete O'Hanlon23-Feb-09 2:30
mvePete O'Hanlon23-Feb-09 2:30 
GeneralRe: How can i attach XAML style file to my C# Project !? Pin
Hadabo23-Feb-09 4:16
Hadabo23-Feb-09 4:16 
QuestionUsing Late Bound COM Objects - Why i getting Exception .... ( what wrong with my code ? ) Pin
Yanshof23-Feb-09 1:09
Yanshof23-Feb-09 1:09 
AnswerRe: Using Late Bound COM Objects - Why i getting Exception .... ( what wrong with my code ? ) Pin
RobScripta23-Feb-09 5:33
professionalRobScripta23-Feb-09 5:33 
Questionthis.Height size issue Pin
tarquinn cook23-Feb-09 0:50
tarquinn cook23-Feb-09 0:50 
I have been having this problem for some time and I believe it must steam from my misunderstanding of some basic concept. That said can someone please set me straight on the matter of usable form size.

In the below instance I am looking to create a line with a ten pixel boarder at the top and bottom. When the code is run as expected there is a 10 pixel gap at the top however the bottom of the line goes off the screen and needs an additional 35 pixels added for the desired effect. Can some kind person please tell me why and how I should measure the form height if not like this.

Jason

System.Drawing.Graphics graphicsObj = this.CreateGraphics();
graphicsObj.DrawLine(new Pen(Color.Blue, 4), new Point(110, 10), new Point(110, this.Height - 10));

AnswerRe: this.Height size issue Pin
Greg Chelstowski23-Feb-09 1:34
Greg Chelstowski23-Feb-09 1:34 
AnswerRe: this.Height size issue Pin
Greg Chelstowski23-Feb-09 1:41
Greg Chelstowski23-Feb-09 1: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.