Click here to Skip to main content
15,909,953 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: translation from c#? Pin
ozeegers13-Nov-06 2:30
ozeegers13-Nov-06 2:30 
GeneralRe: translation from c#? Pin
Dave Doknjas13-Nov-06 4:08
Dave Doknjas13-Nov-06 4:08 
GeneralRe: translation from c#? Pin
ozeegers13-Nov-06 7:17
ozeegers13-Nov-06 7:17 
QuestionDatagrid help for newbie Pin
penguin500012-Nov-06 10:27
penguin500012-Nov-06 10:27 
QuestionHow to draw a spectral plot to a picturebox [modified] Pin
buzzztah12-Nov-06 9:39
buzzztah12-Nov-06 9:39 
AnswerRe: How to draw a spectral plot to a picturebox Pin
Christian Graus12-Nov-06 10:18
protectorChristian Graus12-Nov-06 10:18 
GeneralRe: How to draw a spectral plot to a picturebox Pin
buzzztah14-Nov-06 1:22
buzzztah14-Nov-06 1:22 
GeneralRe: How to draw a spectral plot to a picturebox Pin
Christian Graus14-Nov-06 9:41
protectorChristian Graus14-Nov-06 9:41 
Bitmap bm = new Bitmap (200, 200); // I think you need to set a pixel depth as well )
using (Graphics gr = Graphics.FromBitmap(bm))
{
   gr.DrawLine(20, 20, Pens.White); // Something like that
}

You don't need a picturebox, but you can pass the bitmap to a picturebox here if you like
I'd prefer to make the bitmap a member, or to draw directly onto the graphics object in the paint event.



QuestionReading Registry Value Pin
Puggsley12-Nov-06 9:24
Puggsley12-Nov-06 9:24 
AnswerRe: Reading Registry Value Pin
Christian Graus12-Nov-06 10:15
protectorChristian Graus12-Nov-06 10:15 
GeneralRe: Reading Registry Value Pin
Puggsley12-Nov-06 10:30
Puggsley12-Nov-06 10:30 
GeneralRe: Reading Registry Value Pin
Christian Graus12-Nov-06 11:03
protectorChristian Graus12-Nov-06 11:03 
GeneralRe: Reading Registry Value Pin
Christian Graus12-Nov-06 11:05
protectorChristian Graus12-Nov-06 11:05 
GeneralRe: Reading Registry Value Pin
Puggsley12-Nov-06 11:13
Puggsley12-Nov-06 11:13 
GeneralRe: Reading Registry Value Pin
Christian Graus12-Nov-06 11:21
protectorChristian Graus12-Nov-06 11:21 
GeneralRe: Reading Registry Value Pin
Puggsley12-Nov-06 11:24
Puggsley12-Nov-06 11:24 
GeneralRe: Reading Registry Value Pin
Puggsley12-Nov-06 11:37
Puggsley12-Nov-06 11:37 
GeneralRe: Reading Registry Value Pin
Christian Graus12-Nov-06 11:40
protectorChristian Graus12-Nov-06 11:40 
GeneralRe: Reading Registry Value Pin
Puggsley12-Nov-06 11:52
Puggsley12-Nov-06 11:52 
QuestionSorting a one-dimensional array [modified] Pin
maddogjbm12-Nov-06 8:31
maddogjbm12-Nov-06 8:31 
AnswerRe: Sorting a one-dimensional array Pin
Guffa12-Nov-06 9:07
Guffa12-Nov-06 9:07 
GeneralRe: Sorting a one-dimensional array Pin
maddogjbm12-Nov-06 11:29
maddogjbm12-Nov-06 11:29 
AnswerRe: Sorting a one-dimensional array Pin
Syed Shahid Hussain12-Nov-06 9:26
Syed Shahid Hussain12-Nov-06 9:26 
AnswerRe: Sorting a one-dimensional array Pin
Christian Graus12-Nov-06 10:17
protectorChristian Graus12-Nov-06 10:17 
GeneralRe: Sorting a one-dimensional array Pin
Guffa12-Nov-06 11:20
Guffa12-Nov-06 11:20 

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.