the blitz code I'm calling is so:
w = CreateWindow("", 100,100,200,200,0)
redrawwindow(queryobject(w, 1), 0, 0, 0)
I also tried:
w = CreateWindow("", 100,100,200,200,0)
redrawwindow(queryobject(w, 1), 0, 0, 1)
It has to be said I couldn't find the values for the flags RDW_.... not even in the massive list of win32 consts posted by defiance:
http://www.blitzbasic.com/codearcs/codearcs.php?code=589#comments The user32.decls line is declared like so:
RedrawWindow%(hwnd%, lprcupdate*, hrgnupdate%, furedraw%)
my suspicions are it is either
a) dodgy flag setup
b) somat to do with lprcupdate* bit of the redrawwindow line in user32.decls
Mr Brine