Blanky, that sure is a strange error...
( I get it on my TNT2, so it's not your vid card

)
The bad thing is that DBC is not being updated anymore ( not since DBP was released ) so I guess you'll have to find a workaround...
Try this:
set window on
wait 10
print "This app will demonstrate the weird bit with the title bar"
print "and the DDraw surface (ok, the big black bit in the middle)."
print " "
print "The title bar will change 5 times, with a wait 500 instruction"
print "between each change. Just watch the writing..."
print " "
print "Press any key to continue..."
wait key
cls
wait 100
print "LINE 1"
print "LINE 2"
print "LINE 3"
print "LINE 4"
print "LINE 5"
print "LINE 6"
print "Ok? Hit a key!"
wait key
_set_title("JUMP")
wait 500
_set_title("Seventeen")
wait 500
_set_title("Aliens are in my bedroom")
wait 500
_set_title("Look at the cow")
wait 500
_set_title("Moo")
print "Hmm?"
wait key
end
Function _set_title(title$)
user32 = _find_free_dll()
Load DLL "user32.dll",user32
hwnd = Call DLL(user32,"GetActiveWindow")
Call DLL user32,"SetWindowTextA",hwnd,title$
Delete DLL user32
EndFunction
Function _find_free_dll()
Repeat
Inc i
Until DLL Exist(i) = 0
EndFunction i
That just uses the native WinAPI to change the title
And, yes, the Source code button has moved, it's to correspond with the new implimentation of file attachments ( The Download button is over that side too

).
Jess.

Team EOD :: Programmer/All-Round Nice Guy
Aust. Convention!