home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / code / print / psout / psread.txt < prev   
Text File  |  1992-03-02  |  1KB  |  27 lines

  1. This little program will illustrate the method of printing bitmap files
  2. to the default printer under Windows 3.0 using Visual Basic.  It has been
  3. tested on PostScript and HP LaserJet printers only at this point.  If you
  4. run the executable file and click on the "Print This Image" button you will
  5. get a printout of the bitmap displayed.  The program is hard coded to print
  6. this bitmap only.  The code as written will not print a bitmap larger than
  7. 32k bytes.  This is calculated as (Height*Width)/2 for 16-color and
  8. (Height*Width)/8 for monochrome images.  VB provides no support for palette
  9. manipulation and therefore neither displays nor prints 256-color images.
  10.  
  11. If you require support for images ranging from monochrome to 24-bit color
  12. in PCX or BMP formats then I recommend the custom control available from
  13. Crescent Software.  It also provides support for horizontal and vertical
  14. scrollbars, mouse events and full printing support of images.  For further
  15. information contact Don Malin at (203) 438-5300.
  16.  
  17. I am releasing this program into the world even though it is not that clean.
  18. It illustrates a method from printing bitmaps within VB and is not guaranteed
  19. in any way for anything.  If you have questions I will attempt to answer them
  20. as time permits.  I can be contacted on CIS at 70471,137.
  21.  
  22. Stephen Cramp
  23. C/Systems
  24. 13584 Kennedy Rd. N.,
  25. Inglewood, Ont
  26. CANADA   L0N 1K0
  27.