The code is as follows:
Code: Select all
Pr1 = "Winning team: " + ws_win
DrawingFont(FontID(0))
DrawText(710, 720, pr1)
Code: Select all
DrawingFont(FontID(0))
DrawText(710, 730, pr1)
Any thoughts?
Code: Select all
Pr1 = "Winning team: " + ws_win
DrawingFont(FontID(0))
DrawText(710, 720, pr1)
Code: Select all
DrawingFont(FontID(0))
DrawText(710, 730, pr1)
Code: Select all
PrinterVectorOutput(#PB_Unit_Millimeter)
Code: Select all
If StartVectorDrawing(PrinterVectorOutput(#PB_Unit_Millimeter))
MovePathCursor(40, 40)
DrawVectorText("Hello world")
StopVectorDrawing()
EndIf
Code: Select all
If PrintRequester()
If StartPrinting("PureBasic Test")
If StartVectorDrawing(PrinterVectorOutput(#PB_Unit_Millimeter))
MovePathCursor(50, 50)
DrawVectorText("PureBasic Printer Test")
MovePathCursor(100, 100)
DrawVectorText("PureBasic Printer Test 2")
StopVectorDrawing()
EndIf
StopPrinting()
EndIf
EndIf