| Author |
Message |
b_unlogged Guest
|
Posted: Mon Dec 06, 2004 7:02 pm
Post subject: |
|
|
| hey, listen to this guy! He's a guru! Consider yourselves graced by his presence! |
|
| Back to top |
|
 |
Jack Bond the guest Guest
|
Posted: Fri Dec 10, 2004 1:03 pm
Post subject: |
|
|
| I need help too. I'm not sure how to draw pixels. can any1 help me? |
|
| Back to top |
|
 |
Guest
|
Posted: Fri Dec 10, 2004 4:34 pm
Post subject: |
|
|
| Look in QBASIC Help, under the DRAW command. |
|
| Back to top |
|
 |
Jack Bond Guest
|
Posted: Fri Dec 10, 2004 9:43 pm
Post subject: |
|
|
| I don't use qbasic I use GW basic |
|
| Back to top |
|
 |
bond Guest
|
Posted: Sat Dec 11, 2004 12:27 pm
Post subject: |
|
|
nevermind the graphics
I just wanna show a CCOOLL one I did  |
|
| Back to top |
|
 |
baro_unlogged Guest
|
Posted: Sat Dec 11, 2004 12:29 pm
Post subject: |
|
|
uuum... right.
pset (x coordinate, y coordinate) colour
easy enough. |
|
| Back to top |
|
 |
Jack Bond Guest
|
Posted: Sun Dec 19, 2004 1:41 pm
Post subject: |
|
|
nevermind I'm past that.
I REEEEEEEEEEEEEEELY need to know how to bind space bar. Just like you bind arrows. I want to put like:
10 on key "however you do space bar" gosub 1000
20 goto 10
1000 print"success"
1010 return
and the same for the f key. |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Dec 20, 2004 7:10 am
Post subject: Relsoft |
|
|
Untested:
| Code: | 10 K$ = inkey$
20 if K$ = chr$(32) then gosub 100
30 if K$ = "" then 10
90 end
100 Print "Pressed Space"
110 return |
[/code] |
|
| Back to top |
|
 |
Jack Bond Guest
|
|
| Back to top |
|
 |
Guest
|
|
| Back to top |
|
 |
|