what's wrong in the following:
Code: Select all
CreateImage(0, 50, 50)
If StartDrawing(ImageOutput(0))
DrawText(0, Int(33.5) >> 1, "", 0)
EndIf
StopDrawing()
Best Regards
Code: Select all
CreateImage(0, 50, 50)
If StartDrawing(ImageOutput(0))
DrawText(0, Int(33.5) >> 1, "", 0)
EndIf
StopDrawing()
Code: Select all
Procedure.d Double(Integer.i)
ProcedureReturn Integer
EndProcedure
DrawText(0, Double(Int(33.5) >> 1), "", 0)not exactly thatCan't use any of the following operands with float or double <<,>>, etc...