home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / CODIGO_2 / PRNT_CLP / PRINTCB.BAS next >
Encoding:
BASIC Source File  |  1997-03-16  |  543 b   |  20 lines

  1. 'This program prints the clipboard when it contains valid data
  2. 'Author: Clifford P. Barnett  CIS=70244,2755
  3. 'Last Change 06/09/92
  4. 'Last Change 06/10/92 Users demanded a description of CBtype (before printing)
  5. 'Last Change 06/11/92 Metafile type removed (Not reliable)
  6.  
  7. Global Const CF_TEXT = 1
  8. Global Const CF_BITMAP = 2
  9. Global Const CF_METAFILE = 3
  10. Global Const CF_DIB = 8
  11.  
  12. Global Const WS_NORMAL = 0
  13. Global Const WS_MINIMIZED = 1
  14. Global Const WS_MAXIMIZED = 2
  15.  
  16. Global CBType As Integer
  17. Global TypeDescription As String
  18.  
  19.  
  20.