Hi all,
I have no idea why this doesn't work. Maybe someone can spot the problem. It's got to be something simple, right?
What it does is show the first graphic print "Test 1: 1.0" but nothing else. I've tried a dialog redraw setup as well which is even worse. Nothing shows.
The box however, always shows. I put that in there to see if it was every graphic statement. Only print and line input (which isn't shown here) have this problem. They are invisible after the first print.
I'm stuck.
Randal
I have no idea why this doesn't work. Maybe someone can spot the problem. It's got to be something simple, right?

What it does is show the first graphic print "Test 1: 1.0" but nothing else. I've tried a dialog redraw setup as well which is even worse. Nothing shows.
The box however, always shows. I put that in there to see if it was every graphic statement. Only print and line input (which isn't shown here) have this problem. They are invisible after the first print.
I'm stuck.
Randal
Code:
$Version = "1.0" Function PBMain() Graphic Window "Greatest Thing Since Sliced Onions" & $VERSION, 0, 0, 1024, 768 To hWin Graphic Attach hWin, 0 font new "Lucida Console", 12, 0, 0, 0, 0 to font1 graphic set font font1 Graphic Color %RGB_LIME, 0 GRAPHIC CLEAR %BLACK graphic Print "Test 1: "; $Version graphic Print " " graphic Print "Test 2" graphic box (100, 100) - (220, 220), 0, %BLUE, 0 graphic waitkey$ end function
Comment