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

C#

 
GeneralRe: Splitting a string Pin
Member 50926225-Aug-03 19:35
Member 50926225-Aug-03 19:35 
GeneralRe: Splitting a string Pin
A.Wegierski25-Aug-03 19:29
A.Wegierski25-Aug-03 19:29 
GeneralRe: Splitting a string Pin
Member 50926225-Aug-03 19:33
Member 50926225-Aug-03 19:33 
GeneralRe: Splitting a string Pin
A.Wegierski25-Aug-03 19:39
A.Wegierski25-Aug-03 19:39 
GeneralRe: Splitting a string Pin
Philip Fitzsimons26-Aug-03 2:29
Philip Fitzsimons26-Aug-03 2:29 
GeneralRe: Splitting a string Pin
Donald_a26-Aug-03 6:26
Donald_a26-Aug-03 6:26 
GeneralGet a grahics object from a Bitmap Pin
Ista25-Aug-03 17:22
Ista25-Aug-03 17:22 
GeneralRe: Get a grahics object from a Bitmap Pin
Nick Parker25-Aug-03 17:37
protectorNick Parker25-Aug-03 17:37 
Ista wrote:
what I want to do is draw rectangles and things like that inside. But inorder to do that I need to get a graphics object of its surface.

You already have a Graphics object embedded within the PaintEventArgs, you are using it when you are creating the Bitmap object above when you access it like e.Graphics. You can continue using this object such as
e.Graphics.DrawLine(0, 0, this.Width, this.Height);

or
Graphics grfx = e.Graphics;
grfx.DrawLine(0, 0, this.Width, this.Height);


Either way works. HTH

-Nick Parker
GeneralRe: Get a grahics object from a Bitmap Pin
Ista25-Aug-03 17:41
Ista25-Aug-03 17:41 
GeneralRe: Get a grahics object from a Bitmap Pin
Nick Parker25-Aug-03 17:46
protectorNick Parker25-Aug-03 17:46 
GeneralRe: Get a grahics object from a Bitmap Pin
Ista25-Aug-03 17:47
Ista25-Aug-03 17:47 
GeneralRe: Get a grahics object from a Bitmap Pin
Nick Parker25-Aug-03 18:27
protectorNick Parker25-Aug-03 18:27 
GeneralRe: Get a grahics object from a Bitmap Pin
Ista25-Aug-03 18:28
Ista25-Aug-03 18:28 
GeneralDES encryption/decryption Pin
devvvy25-Aug-03 16:41
devvvy25-Aug-03 16:41 
GeneralRe: DES encryption/decryption Pin
Julian Bucknall [MSFT]26-Aug-03 5:46
Julian Bucknall [MSFT]26-Aug-03 5:46 
QuestionValid CodeProject Article? Pin
Steven Behnke25-Aug-03 14:41
Steven Behnke25-Aug-03 14:41 
AnswerRe: Valid CodeProject Article? Pin
Ista25-Aug-03 15:13
Ista25-Aug-03 15:13 
GeneralRegistry Errors Pin
mikemilano25-Aug-03 10:57
mikemilano25-Aug-03 10:57 
GeneralRe: Registry Errors Pin
Roger Stewart25-Aug-03 12:02
professionalRoger Stewart25-Aug-03 12:02 
GeneralRe: Registry Errors Pin
mikemilano25-Aug-03 12:57
mikemilano25-Aug-03 12:57 
GeneralRe: Registry Errors Pin
Roger Stewart25-Aug-03 15:11
professionalRoger Stewart25-Aug-03 15:11 
GeneralRe: Registry Errors Pin
mikemilano26-Aug-03 7:06
mikemilano26-Aug-03 7:06 
GeneralScreenshot of Window... Pin
Calamitous25-Aug-03 10:40
Calamitous25-Aug-03 10:40 
Questionhow to retrieve a list of sheet from excel with odbc in c#? Pin
zoltix25-Aug-03 10:15
zoltix25-Aug-03 10:15 
AnswerRe: how to retrieve a list of sheet from excel with odbc in c#? Pin
Csharp™25-Aug-03 11:43
Csharp™25-Aug-03 11:43 

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.