Click here to Skip to main content
15,894,405 members
Home / Discussions / C#
   

C#

 
AnswerRe: tabControl Pin
David C# Hobbyist.1-Jan-12 8:19
professionalDavid C# Hobbyist.1-Jan-12 8:19 
AnswerRe: tabControl Pin
Luc Pattyn1-Jan-12 9:05
sitebuilderLuc Pattyn1-Jan-12 9:05 
AnswerRe: tabControl Pin
Engineer khalili1-Jan-12 9:27
professionalEngineer khalili1-Jan-12 9:27 
AnswerRe: tabControl Pin
PIEBALDconsult1-Jan-12 12:08
mvePIEBALDconsult1-Jan-12 12:08 
QuestionHow to detect intersecting lines in C#? Pin
Member 83806481-Jan-12 5:05
Member 83806481-Jan-12 5:05 
AnswerRe: How to detect intersecting lines in C#? Pin
Richard MacCutchan1-Jan-12 23:27
mveRichard MacCutchan1-Jan-12 23:27 
AnswerRe: How to detect intersecting lines in C#? Pin
V.2-Jan-12 1:35
professionalV.2-Jan-12 1:35 
AnswerRe: How to detect intersecting lines in C#? Pin
Luc Pattyn2-Jan-12 3:01
sitebuilderLuc Pattyn2-Jan-12 3:01 
One negative sentence does not constitute a program specification, so I can't help you out; please explain what your program is supposed to do, and how it deviates from your expectations.

BTW: you should keep Paint handlers as simple as possible, since it probably will be called a large number of times when some window activity occurs on your system. Whatever needs to be calculated, should be calculated in advance. And memory allocations in there should be minimal too, example: don't call ToArray() in a Paint handler. Finally, objects that offer a public Dispose() method should be disposed of, which you don't in e.Graphics.DrawLines(new Pen...; it is much better to create such small objects once, and keep them around as class members (say "blackPen2" and "redPen2").

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

QuestionConvert C# windows app to android Pin
jojoba201131-Dec-11 5:13
jojoba201131-Dec-11 5:13 
AnswerRe: Convert C# windows app to android PinPopular
Richard Andrew x6431-Dec-11 5:29
professionalRichard Andrew x6431-Dec-11 5:29 
GeneralRe: Convert C# windows app to android Pin
jojoba201131-Dec-11 5:44
jojoba201131-Dec-11 5:44 
GeneralRe: Convert C# windows app to android Pin
Pete O'Hanlon31-Dec-11 7:10
mvePete O'Hanlon31-Dec-11 7:10 
GeneralRe: Convert C# windows app to android Pin
Rajesh Anuhya1-Jan-12 1:06
professionalRajesh Anuhya1-Jan-12 1:06 
AnswerRe: Convert C# windows app to android Pin
Dave Kreskowiak31-Dec-11 11:49
mveDave Kreskowiak31-Dec-11 11:49 
AnswerRe: Convert C# windows app to android Pin
jschell31-Dec-11 13:34
jschell31-Dec-11 13:34 
AnswerRe: Convert C# windows app to android Pin
V.2-Jan-12 1:39
professionalV.2-Jan-12 1:39 
QuestionLooking for help with form focus Pin
turbosupramk330-Dec-11 18:06
turbosupramk330-Dec-11 18:06 
AnswerRe: Looking for help with form focus Pin
Richard MacCutchan30-Dec-11 22:38
mveRichard MacCutchan30-Dec-11 22:38 
GeneralRe: Looking for help with form focus Pin
turbosupramk331-Dec-11 3:08
turbosupramk331-Dec-11 3:08 
GeneralRe: Looking for help with form focus Pin
Richard MacCutchan31-Dec-11 3:44
mveRichard MacCutchan31-Dec-11 3:44 
GeneralRe: Looking for help with form focus Pin
turbosupramk331-Dec-11 4:19
turbosupramk331-Dec-11 4:19 
AnswerRe: Looking for help with form focus Pin
Alan N31-Dec-11 3:43
Alan N31-Dec-11 3:43 
GeneralRe: Looking for help with form focus Pin
turbosupramk331-Dec-11 4:18
turbosupramk331-Dec-11 4:18 
GeneralRe: Looking for help with form focus Pin
Alan N31-Dec-11 7:08
Alan N31-Dec-11 7:08 
GeneralRe: Looking for help with form focus Pin
turbosupramk331-Dec-11 9:32
turbosupramk331-Dec-11 9:32 

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.