Categories

launch a website

launch a website using Darkbasic

launch a website

rem Launch programmershelp execute file "http://www.programmershelp.co.uk"

Bookmark It

multiple text example

multiple text example

multiple text example

Rem multi text using darkbasic PRINT "programmershelp" PRINT "darkbasic" PRINT "multi text example" WAIT KEY

Bookmark It

text example with delays

text example with delays

text example with delays

REM text example with delays print "programmershelp" wait (1000) print "darkbasic" wait (1000) print "text example"

do

loop

Bookmark It

HORIZONTAL SCROLLING TEXT

HORIZONTAL SCROLLING TEXT

HORIZONTAL SCROLLING TEXT

REM HORIZONTAL SCROLLING TEXT x=10 do cls inc x text x

Bookmark It

vertical scrolling text

vertical scrolling text

vertical scrolling text

REM VERTICAL SCROLLING TEXT y=10 do cls inc y text 10

Bookmark It