Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ronkq
  • Order by date
  1. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    ... seems this piece of code works... unit PrtScr2U; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Menus, Printers, Clipbrd; type TForm1 = class(TForm) MainMenu1: TMainMenu; OpenClip1: TMenuItem; procedure...
  2. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    not all forums are alike... I have gotten following response to the same thread question from an other forum: >>> MS paint is very simple image editing software, it sends very simple data to printer, but your programs is a complicated program, which will processing your image data into this and...
  3. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    reflecting and sleuthing: seems the print queue fills with the pixel-by-pixel data (50MB) in about 10...20 seconds; and it gets emptied (sent to printer) by Windows in low priority mode (surely a USB port can send data to a printer faster than 50MB per 10 minutes). Looking at CPU performance...
  4. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    the Help on StretchDraw does not imply any compression or speed up .. StretchDraw will use the Draw method to stretch the image to fit a specified rectangle... StretchDIBits is not found in Delphi7... Tnx, RonQ
  5. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    StretchDraw / StretchDIBits are new/unfamiliar to me; I'll try looking it up in the Help System for Delphi. Thanks tip(s). RonQ
  6. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    the main reason the speed is an issue (local or networked) is that customer feedback on printing, is "unsatisfactory performance". That it would be faster to copy the clipboard to MS Paint and print (prints in 20seconds), than to invoke the printing from within the program( prints in 10 minutes...
  7. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    My experience(s) show that the print job preamble between MS Paint and Delphi's Printer Object "must be" different. I gather that Windows and the printer both decypher the print job preamble.... So I could see needing knowledge of details about the "print job preamble"; and consequently access...
  8. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    sorry... about slight oops on my part: the program sends only non-background colored screen bytes to the printer... figuring the white spaces on the paper would not need changing/printing..... RonQ BTW: program fragment is supplied in"confidential mode" to the forum .. and "normal" legalease...
  9. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    Thank you for multiple replies. My code sends only non-zero (screen) bytes to the printer. I understand that the Win-printing system may have to (or is geared) to send/specify all bytes to print on the paper; and that therefore 50 MB is warranted. MS Paint would be slaved to that too, but it...
  10. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    oops, "thank you, did so.." is not applicable here . this question was originally posted in the Pascal forum. Where the feedback was to post this question in the Borland Delphi Forum. Now the question is here and begs for an answer/tip. thanks, ronkq.
  11. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    thank you; and did so...
  12. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    .have a piece of Delphi (6,7,2010) code which does a screen capture to the Windows Clipboard, and prints a single sheet of the screen (1024x768) on any printer. Problem: takes too long to get started printing vs MS Paint, which prints immediately. How to achieve same thing in Delphi/PascaL...
  13. ronkq

    PrntScr from Delphi vs MS Paint (which bypasses some thing)

    ...have a piece of Delphi (6,7,2010) code which does a screen capture to the Windows Clipboard, and prints a single sheet of the screen (1024x768) on any printer. Problem: takes too long to get started printing vs MS Paint, which prints immediately. How to achieve same thing in Delphi/PascaL...

Part and Inventory Search

Back
Top