home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / bitmap / exam01.dba next >
Encoding:
Text File  |  2000-04-09  |  499 b   |  20 lines

  1. Rem * Title  : Load a Bitmap
  2. Rem * Author : DBS-MB
  3. Rem * Date   : 1st August 99
  4. rem ==========================================
  5. rem DARK BASIC EXAMPLE PROGRAM 1
  6. rem ==========================================
  7. rem This program will load a BMP file
  8. rem ------------------------------------------
  9.  
  10. rem Set the ink to white and paper color to black 
  11. ink rgb(244,214,210),1
  12.  
  13. load bitmap "pics\bitmap0.bmp"
  14.  
  15. rem Will wait for you to press any key
  16. suspend for key
  17.  
  18. rem End the program
  19. end
  20.