here is some example code for dark basic classic
rem print some text
print "hello, this is normal text and background"
rem change the ink colour
ink rgb(255,0,0),0
rem print more text in new in colour
print "This is a new text colour"
rem change ink colour again
ink rgb(0,255,0),0
rem print more text
print "Press any key to change the background colour"
rem wait for user to press a key
suspend for key
rem clear the screen and change the background colour
cls rgb(0,255,0)
rem change ink colour
ink rgb(255,0,0),0
rem print some more text
print "Isn't this great!!!"
rem end the program
end
hope it helps??? why do you need a print.dll when the print command works fine???
hi guys