home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / APPEXPRT.PAK / WNDBKGD.SNP < prev    next >
Encoding:
Text File  |  1997-05-06  |  528 b   |  14 lines

  1. ##QUERY_WIND_BACKGRND [[BackgroundColor]]
  2. ##QUERY_WIND_BACKCONSTANT [[BackgroundConstant]]
  3. ##--BEGIN-- (BackgroundColor != "") || (BackgroundConstant != "")
  4.   // Change the window's background color
  5.   //
  6. ##  --BEGIN-- (BackgroundColor != "")
  7.   SetBkgndColor([[BackgroundColor]]);
  8. ##  --END-- (BackgroundColor != "")
  9. ##  --BEGIN-- (BackgroundConstant != "")
  10.   SetBkgndColor(GetSysColor([[BackgroundConstant]]));
  11. ##  --END-- (BackgroundConstant != "")
  12.  
  13. ##--END-- (BackgroundColor != "") || (BackgroundConstant != "")
  14.