Use SYNC OFF, it stops dbpro grabbing 100% of the cpu.
e.g.
sync off
do
cls
text 0,0,str$(screen fps())
text 0,15,"Hello World"
loop
It's really only usefull for apps where consistant timing isn't required.
If you are going to use it in a game make sure you include an option to use the normal sync methods otherwise users with slower comps won't be able to play. There is also quite a difference between how SYNC OFF behaves in win9x and win2k.
I think you can use SYNC OFF and then use SYNC ON when you want to do something as fast as possible then switch back to SYNC OFF again.
e.g
sync off
`do some stuff without hogging cpu
sync on
`something you need to do fast, like loading a file or a lot of maths
sync off
`do more stuff without hogging cpu
You will have to test that yourself as I am not 100% sure it works.