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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ids4ids

  1. ids4ids

    FindNextPrinterChangeNotification

    I mean job ID indentifier from printer queue. For example, if bitand(dwChange,PRINTER_CHANGE_JOB) = PRINTER_CHANGE_JOB *print job id identifier from queue (which print job) endif if bitand(dwChange,PRINTER_CHANGE_DELETE_JOB) = PRINTER_CHANGE_DELETE_JOB *print job id identifier from queue endif
  2. ids4ids

    FindNextPrinterChangeNotification

    Thank you Olaf. Can you help me to obtain ID identifier of changed print job ?
  3. ids4ids

    FindNextPrinterChangeNotification

    I mean job ID identifier of changed job...
  4. ids4ids

    FindNextPrinterChangeNotification

    I know about these contants but can you explain why 0x602 means PRINTER_CHANGE_SET_PRINTER and PRINTER_CHANGE_SET_JOB and PRINTER_CHANGE_DELETE_JOB ? ... I must looking for bits change or something like this ? How can I obtain the changed job ID identifier ?
  5. ids4ids

    FindNextPrinterChangeNotification

    Hi, I use the code from below to monitor a printer queue and I want to know when and what it's changing. From my tests dwChange has decimal values which I don't know what is meaning and AdrBuffer is always zero. Can anybody tell me what are the values of variable dwChange and their meaning ...
  6. ids4ids

    connect to a pop3 server through proxy

    How can I connect to pop3 server through proxy ? (using VFP7 and winsock)
  7. ids4ids

    programmatically changing printer settings

    You can find the solution adapting the example from SetPrinterVB.prg from http://www.foxitaly.com/ecerlini/struttureapi_en.html
  8. ids4ids

    programmatically changing printer settings

    Hi Jockey2, Mike, Finally I found the solution (it's just I'm looking for) to change, without user intervention, the paper size of printer driver to suit paper size of pdf file. I found how to change immediate the default printer too. From my point of view this topic is closed. Thank you for...
  9. ids4ids

    programmatically changing printer settings

    Hi Jockey2, I want to print pdf files from a hot folder. Application must check periodically a folder and print the pdf files without user intervention. But, most important, the application must change driver paper size concordantly with the document paper size from pdf file. For example, if I...
  10. ids4ids

    programmatically changing printer settings

    Mike, Jockey2, I want to print pdf files without user intervention using VFP7 but the problem is that Acrobat Reader 7.0 don't change by itself the paper size in printer driver to suit the paper size of document from pdf file.
  11. ids4ids

    programmatically changing printer settings

    Here is my situation: I want to change printer setting for printing PDF files, NOT for printing .frx files (vfp reports) and NOT for printing .frx files in pdf format. I have installed Acrobat Reader 7.0. My default printer has default paper size A4. When print the PDF file with...
  12. ids4ids

    programmatically changing printer settings

    I don't setting printer for report printing, I want to print files without user intervention from a directory - I find the file (pdf), I see the page size of document (all pages of document have the same page size), I setting the printer and I print the file using ShellExecute.
  13. ids4ids

    programmatically changing printer settings

    I have not access to news2news members area... I found how to parse cDevMode and how to modify dmPaperSize,dmPaperLength and dmPaperWidth : dmPaperSize=buf2word(SUBSTR(cDevmode,47,2)) dmPaperLength=buf2word(SUBSTR(cDevmode,49,2)) dmPaperWidth=buf2word(SUBSTR(cDevmode,51,2)) I know that if a...
  14. ids4ids

    programmatically changing printer settings

    thanks jokey2... Can anybody help me how can I parse cDevMode buffer from example (from link) to obtain and modify paper size, paper lenght, paper width, scale,color, duplex, print quality ?
  15. ids4ids

    finding the page size of a pdf file

    It's just additional information for who want to do this.

Part and Inventory Search

Back
Top