I use Windows98SE on a 400Mhz platform with 180MB of ram. So why can't i make my progress bar Red?
CASE %WM_INITDIALOG
REDIM hBrush(1 TO 2)
REDIM hDC(0 TO 2)
REDIM hBmp(1 TO 2)
REDIM Clr(1 TO 2)
hBrush(1) = CreateSolidBrush(RGB( 0, 0, 255))
hBrush(2) = CreateSolidBrush(RGB(255, 255, 255))
............
------------------
Kind Regards
Mike
CASE %WM_INITDIALOG
REDIM hBrush(1 TO 2)
REDIM hDC(0 TO 2)
REDIM hBmp(1 TO 2)
REDIM Clr(1 TO 2)
hBrush(1) = CreateSolidBrush(RGB( 0, 0, 255))
hBrush(2) = CreateSolidBrush(RGB(255, 255, 255))
............
------------------
Kind Regards
Mike
Comment