I am new to Blitz Plus after upgrading from Blitz Basic.
I am having a problem running simple programs.
When I run the following program I just get a Black window (Blitzcc)
No graphics are drawn.
The only way I can get it to draw the graphics is to click the Blitz Debugger TAB, and then the BLitzcc Tab.
The graphics then draw correctly.
This is a sample Program supplied with Blitz Plus that exhibits the problem :-
; Line example
Graphics 800,600,16
; Wait for ESC to hit
While Not KeyHit(1)
; Set a random color
Color Rnd(255),Rnd(255),Rnd(255)
; Draw a random line
Line Rnd(800),Rnd(600),Rnd(800),Rnd(600)
Wend
Any ideas what I am doing wrong.
TIA
Andy
I am having a problem running simple programs.
When I run the following program I just get a Black window (Blitzcc)
No graphics are drawn.
The only way I can get it to draw the graphics is to click the Blitz Debugger TAB, and then the BLitzcc Tab.
The graphics then draw correctly.
This is a sample Program supplied with Blitz Plus that exhibits the problem :-
; Line example
Graphics 800,600,16
; Wait for ESC to hit
While Not KeyHit(1)
; Set a random color
Color Rnd(255),Rnd(255),Rnd(255)
; Draw a random line
Line Rnd(800),Rnd(600),Rnd(800),Rnd(600)
Wend
Any ideas what I am doing wrong.
TIA
Andy