I've started to use DBPro today (Free version, though I'm saving money for paid one as I want to support such great guys like you) and I've tried to make simple pong as my learning game.
The code is:
Rem Project: Pong
Rem Created: Sunday, November 25, 2012
Rem ***** Main Source File *****
set display mode 800,600,32
set window on
playerpaddle = 1
enemypaddle = 2
ball = 3
Rem ^^ sprite numbers for all things.
Load Bitmap "paddle.png",1
Load Bitmap "ball.png",2
set window title "Simple pong"
Sync On
sprite playerpaddle, 300,600-30,1
sprite enemypaddle, 300,0,1
sprite ball, 400-15,300-15,2
sync
Remstart
Main loop start here
remend
wait key
Unfortunately I get runtime error message "Runtime error 501: Image number illegal at line 15". This is first of the sprite lines.
From my understanding I am not allowed to use variables here. WTFirework?
Also why does your BASIC dialect not allow for inline comments using apostrophe character, like most BASIC dialects do? It is certainly easier to push ' than type REM.