Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
GeneralForms/Listbox Display Pin
Sovman14-Feb-03 11:17
Sovman14-Feb-03 11:17 
GeneralRe: Forms/Listbox Display Pin
Ray Cassick14-Feb-03 11:23
Ray Cassick14-Feb-03 11:23 
GeneralIrDAClient Pin
Daniel Strigl14-Feb-03 10:35
Daniel Strigl14-Feb-03 10:35 
GeneralConverting a Graphics Object Back to a Bitmap Pin
draco_iii14-Feb-03 8:21
draco_iii14-Feb-03 8:21 
GeneralRe: Converting a Graphics Object Back to a Bitmap Pin
draco_iii14-Feb-03 8:34
draco_iii14-Feb-03 8:34 
GeneralRe: Converting a Graphics Object Back to a Bitmap Pin
Furty14-Feb-03 8:58
Furty14-Feb-03 8:58 
GeneralRe: Converting a Graphics Object Back to a Bitmap Pin
clarkwuzhe14-Feb-03 10:29
clarkwuzhe14-Feb-03 10:29 
GeneralRe: Converting a Graphics Object Back to a Bitmap Pin
Furty14-Feb-03 11:11
Furty14-Feb-03 11:11 
Think of the Graphics object as being a paint brush, and a Bitmap as being a canvas.

In your 2nd code example, you created a paint brush called "n" but did absolutely nothing with it. You then created a paint brush called "h" but incorrectly set it's canvas to be a PictureBox object - keeping with the anologies, the PictureBox object would be the frame, the actual canvas would be PictureBox.Image.

The basic fix for your code would be:

Graphics n = Graphics.FromImage(tempBitmap);<br />
n.DrawLine(pen,StartPoint,EndPoint);<br />
pictureBox.Image = tempBitmap;


Hope this helps..
GeneralRuntime Error in Treeview Imagelist Pin
vlusardi14-Feb-03 7:52
vlusardi14-Feb-03 7:52 
GeneralRe: Runtime Error in Treeview Imagelist Pin
John Mautari14-Feb-03 8:29
John Mautari14-Feb-03 8:29 
GeneralRe: Runtime Error in Treeview Imagelist Pin
vlusardi14-Feb-03 8:45
vlusardi14-Feb-03 8:45 
GeneralRe: Runtime Error in Treeview Imagelist Pin
Furty14-Feb-03 9:02
Furty14-Feb-03 9:02 
GeneralRe: Runtime Error in Treeview Imagelist Pin
vlusardi14-Feb-03 9:19
vlusardi14-Feb-03 9:19 
GeneralRe: Runtime Error in Treeview Imagelist Pin
dazinith16-May-03 4:46
dazinith16-May-03 4:46 
GeneralRe: Runtime Error in Treeview Imagelist Pin
vlusardi19-May-03 6:55
vlusardi19-May-03 6:55 
GeneralRe: Runtime Error in Treeview Imagelist Pin
dazinith19-May-03 7:15
dazinith19-May-03 7:15 
GeneralRe: Runtime Error in Treeview Imagelist Pin
vlusardi19-May-03 7:27
vlusardi19-May-03 7:27 
QuestionVERY BAD math?? Pin
Michael D Bray14-Feb-03 5:38
Michael D Bray14-Feb-03 5:38 
AnswerRe: VERY BAD math?? Pin
leppie14-Feb-03 6:01
leppie14-Feb-03 6:01 
GeneralRe: VERY BAD math?? Pin
Michael D Bray14-Feb-03 6:06
Michael D Bray14-Feb-03 6:06 
GeneralRe: VERY BAD math?? Pin
leppie14-Feb-03 6:12
leppie14-Feb-03 6:12 
GeneralRe: VERY BAD math?? Pin
Giles15-Feb-03 3:12
Giles15-Feb-03 3:12 
GeneralHelpProvider control question Pin
DionChen14-Feb-03 4:18
DionChen14-Feb-03 4:18 
GeneralRe: HelpProvider control question Pin
Amber Star16-Feb-03 7:29
Amber Star16-Feb-03 7:29 
QuestionHow I can Check keyboard buffer? Pin
nikulin_andrey14-Feb-03 4:15
nikulin_andrey14-Feb-03 4:15 

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.