Text in a window

BlitzPlus Forums/BlitzPlus Programming/Text in a window

BrianBru(Posted 2008) [#1]
Is there away to create a window and create text within the window, using the likes of the text command.


Kev(Posted 2008) [#2]
CreateLabel() enables you to draw text to a window.


GfK(Posted 2008) [#3]
...or create a canvas.


Sauer(Posted 2008) [#4]
Elaborating on what Gfk said, just use the CREATECANVAS command, and before you want to draw to it, just make sure you set the drawing buffer to the canvas by using the line SETBUFFER CANVASBUFFER(canvashandle).