Click here to Skip to main content
15,909,324 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hiding a process....help guys! Pin
Christian Graus5-Apr-09 20:30
protectorChristian Graus5-Apr-09 20:30 
GeneralRe: Hiding a process....help guys! Pin
King Julien5-Apr-09 20:48
King Julien5-Apr-09 20:48 
GeneralRe: Hiding a process....help guys! Pin
Rajdeep.NET is BACK5-Apr-09 21:36
Rajdeep.NET is BACK5-Apr-09 21:36 
AnswerRe: Hiding a process....help guys! Pin
Christian Graus5-Apr-09 20:31
protectorChristian Graus5-Apr-09 20:31 
GeneralRe: Hiding a process....help guys! Pin
King Julien5-Apr-09 20:55
King Julien5-Apr-09 20:55 
AnswerRe: Hiding a process....help guys! Pin
stancrm5-Apr-09 21:28
stancrm5-Apr-09 21:28 
QuestionFor loop Pin
Sajjad Leo5-Apr-09 19:41
Sajjad Leo5-Apr-09 19:41 
AnswerRe: For loop Pin
Christian Graus5-Apr-09 19:44
protectorChristian Graus5-Apr-09 19:44 
AnswerRe: For loop Pin
King Julien5-Apr-09 20:25
King Julien5-Apr-09 20:25 
QuestionResource file without standard notation [modified] Pin
mayapeter5-Apr-09 19:36
mayapeter5-Apr-09 19:36 
AnswerRe: Resource file without standard notation Pin
King Julien5-Apr-09 20:51
King Julien5-Apr-09 20:51 
QuestionLeap Year Problem... Pin
sah4965-Apr-09 19:25
sah4965-Apr-09 19:25 
AnswerRe: Leap Year Problem... Pin
Christian Graus5-Apr-09 19:41
protectorChristian Graus5-Apr-09 19:41 
AnswerRe: Leap Year Problem... [modified] Pin
akhilonly0075-Apr-09 22:56
akhilonly0075-Apr-09 22:56 
QuestionSort an array list Pin
yesu prakash5-Apr-09 19:24
yesu prakash5-Apr-09 19:24 
AnswerRe: Sort an array list Pin
Christian Graus5-Apr-09 19:42
protectorChristian Graus5-Apr-09 19:42 
GeneralRe: Sort an array list Pin
Tom Deketelaere5-Apr-09 22:47
professionalTom Deketelaere5-Apr-09 22:47 
AnswerRe: Sort an array list Pin
ramz_g8-Apr-09 19:42
ramz_g8-Apr-09 19:42 
QuestionHow to convert Graphics image to Bitmap? Pin
FrankeyJames5-Apr-09 14:42
FrankeyJames5-Apr-09 14:42 
AnswerRe: How to convert Graphics image to Bitmap? Pin
Christian Graus5-Apr-09 14:44
protectorChristian Graus5-Apr-09 14:44 
GeneralRe: How to convert Graphics image to Bitmap? Pin
FrankeyJames5-Apr-09 15:00
FrankeyJames5-Apr-09 15:00 
GeneralRe: How to convert Graphics image to Bitmap? Pin
Christian Graus5-Apr-09 19:43
protectorChristian Graus5-Apr-09 19:43 
AnswerRe: How to convert Graphics image to Bitmap? Pin
Xmen Real 5-Apr-09 15:13
professional Xmen Real 5-Apr-09 15:13 
AnswerRe: How to convert Graphics image to Bitmap? Pin
Guffa5-Apr-09 15:23
Guffa5-Apr-09 15:23 
You can't convert a Graphics object to a Bitmap, as it doesn't contain the image. The Graphics object is just used to draw on a canvas, in this case the canvas is a Bitmap object.

You are creating a Graphics object to draw on the original image, but what you want to do is to create it to draw on the new image, then you draw the original image onto the new image.

The transform controls how the drawing is done using the Graphics object, so when you draw the original image using that Graphics object it will be rotated.

Despite everything, the person most likely to be fooling you next is yourself.

GeneralRe: How to convert Graphics image to Bitmap? Pin
FrankeyJames5-Apr-09 17:18
FrankeyJames5-Apr-09 17:18 

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.