Skip to content

PictureBox Drawing

FellippeHeitor edited this page Mar 22, 2017 · 7 revisions

You can use a PictureBox control as a drawing canvas and use all QB64 drawing commands. To do so, use the methods BeginDraw and EndDraw:

BeginDraw PictureBox1 'Replace PictureBox1 with the actual ID of the desired PictureBox
'Drawing code goes here
EndDraw PictureBox1

See also:

Picture box

Clone this wiki locally