Text in a window
BlitzPlus Forums/BlitzPlus Programming/Text in a window
| ||
Is there away to create a window and create text within the window, using the likes of the text command. |
| ||
CreateLabel() enables you to draw text to a window. |
| ||
...or create a canvas. |
| ||
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). |