Click here to Skip to main content
15,889,462 members
Home / Discussions / C#
   

C#

 
AnswerRe: Excel like Selection? Pin
Christian Graus20-Jun-09 12:47
protectorChristian Graus20-Jun-09 12:47 
Question?How add a database to my c# project? Pin
H.R(Hamid reza)20-Jun-09 11:12
H.R(Hamid reza)20-Jun-09 11:12 
AnswerRe: ?How add a database to my c# project? Pin
Christian Graus20-Jun-09 11:26
protectorChristian Graus20-Jun-09 11:26 
QuestionRe: ?How add a database to my c# project? Pin
H.R(Hamid reza)21-Jun-09 2:29
H.R(Hamid reza)21-Jun-09 2:29 
QuestionPassing a Graphics object Pin
Member 95042020-Jun-09 10:39
Member 95042020-Jun-09 10:39 
AnswerRe: Passing a Graphics object Pin
0x3c020-Jun-09 10:49
0x3c020-Jun-09 10:49 
GeneralRe: Passing a Graphics object Pin
Member 95042020-Jun-09 11:56
Member 95042020-Jun-09 11:56 
GeneralRe: Passing a Graphics object Pin
Luc Pattyn20-Jun-09 12:14
sitebuilderLuc Pattyn20-Jun-09 12:14 
Hi,


Member 950420 wrote:
I understood the debugger to be telling me that the Graphics object was Null


The exception provides line information when available (normally so while debugging); and of course you have set your Visual Studio editor to always show line numbers (menu Tools/Options/TextEditor/AllLanguages:display line numbers), so you immediately can tell which line went wrong.



Member 950420 wrote:
Why is CreateGraphics() wrong?


CreateGraphics() creates a new, large, complex object, whereas the one in PaintEventArgs is already there. And the one you got from CreateGraphics() needs to be Dispose()d of, otherwise you will run into delayed memory collection situations; anyhow it will slow down your app in case you have frequent repaints (e.g. when animating something).


Member 950420 wrote:
how to do it pages on Google


Whatever you find on the Internet may or may not be correct; lots of examples are incorrect, i.e. they seem to function but contain fundamental flaws that will show under some circumstances. Read a serious book on the topic of interest, read some top-notch articles, and read the documentation, then judge everything you encounter for yourself.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

DISCLAIMER: this message may have been modified by others; it may no longer reflect what I intended, and may contain bad advice; use at your own risk and with extreme care.

AnswerRe: Passing a Graphics object Pin
Christian Graus20-Jun-09 11:29
protectorChristian Graus20-Jun-09 11:29 
AnswerRe: Passing a Graphics object Pin
Luc Pattyn20-Jun-09 11:29
sitebuilderLuc Pattyn20-Jun-09 11:29 
QuestionNeed a container like visual studio toolbox. Pin
hdv21220-Jun-09 10:38
hdv21220-Jun-09 10:38 
AnswerRe: Need a container like visual studio toolbox. Pin
Christian Graus20-Jun-09 11:29
protectorChristian Graus20-Jun-09 11:29 
GeneralRe: Need a container like visual studio toolbox. Pin
hdv21220-Jun-09 12:01
hdv21220-Jun-09 12:01 
GeneralRe: Need a container like visual studio toolbox. Pin
Christian Graus20-Jun-09 12:48
protectorChristian Graus20-Jun-09 12:48 
QuestionWindows Service Controlle in VS2008 Pin
Whitaker.Mike20-Jun-09 5:10
Whitaker.Mike20-Jun-09 5:10 
AnswerRe: Windows Service Controlle in VS2008 Pin
ProtoBytes20-Jun-09 5:34
ProtoBytes20-Jun-09 5:34 
AnswerRe: Windows Service Controlle in VS2008 Pin
DaveyM6920-Jun-09 9:40
professionalDaveyM6920-Jun-09 9:40 
AnswerRe: Windows Service Controlle in VS2008 Pin
Shukla Rahul20-Jun-09 10:09
Shukla Rahul20-Jun-09 10:09 
GeneralRe: Windows Service Controlle in VS2008 Pin
Whitaker.Mike21-Jun-09 3:26
Whitaker.Mike21-Jun-09 3:26 
QuestionWeb service problem - error when binding to datagrid [modified] Pin
Gindi Bar Yahav20-Jun-09 4:29
Gindi Bar Yahav20-Jun-09 4:29 
AnswerRe: Web service problem - error when binding to datagrid Pin
ProtoBytes20-Jun-09 5:23
ProtoBytes20-Jun-09 5:23 
GeneralRe: Web service problem - error when binding to datagrid Pin
Gindi Bar Yahav20-Jun-09 6:55
Gindi Bar Yahav20-Jun-09 6:55 
QuestionHow do I check whether the "X" button in the top right corner was clicked? Pin
Etienne_12320-Jun-09 2:39
Etienne_12320-Jun-09 2:39 
AnswerRe: How do I check whether the "X" button in the top right corner was clicked? Pin
Luc Pattyn20-Jun-09 2:42
sitebuilderLuc Pattyn20-Jun-09 2:42 
AnswerRe: How do I check whether the "X" button in the top right corner was clicked? Pin
0x3c020-Jun-09 2:45
0x3c020-Jun-09 2:45 

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.