Search found 63 matches: silently

Return to advanced search

Re: Error sending email

This code works for me .... I send to Outlook 365 silently  Try   oOutLook  := TOleAuto():New("Outlook.Application")Catch    Saying := "For some Odd reason The Outlook e-mail CLient failed to Initialize"    Msginfo( ...
by Rick Lipkin
Fri Aug 11, 2023 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error sending email
Replies: 18
Views: 792

Re: Assigning lUseHaruPdf when TPrinter is sub-classed

I tested this program to generate 200 pdf files silently and all 200 files were created in 1.1 seconds and no crash, no errors and no log files about excess font release. I have used native fwh library without modifications. I tested it with FWH1912. ...
by nageswaragunupudi
Sat Aug 05, 2023 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Assigning lUseHaruPdf when TPrinter is sub-classed
Replies: 18
Views: 894

Re: What is the best PDF Printer Driver Windows to use with Five

... FILE "yourname.pdf"  <your print code>ENDPRINT  By the time ENDPRINT command finishes the job, "yourname.pdf" is created silently and is ready on the disk for you to send by email or do whatever. Please do not get distracted by any other advices.
by nageswaragunupudi
Sat Jan 28, 2023 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What is the best PDF Printer Driver Windows to use with Five
Replies: 11
Views: 794

Re: Lost connection MySQL - Catch error

... can resume working and the program automatically reconnects to the server and continues from where it left. FWH library is the only library that silently reconnects and do not be misled by any postings in the forums by other users, using other libraries.
by nlerdafehn
Fri May 14, 2021 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection MySQL - Catch error
Replies: 5
Views: 888

Re: Lost connection MySQL - Catch error

... can resume working and the program automatically reconnects to the server and continues from where it left. FWH library is the only library that silently reconnects and do not be misled by any postings in the forums by other users, using other libraries.
by nageswaragunupudi
Fri May 14, 2021 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection MySQL - Catch error
Replies: 5
Views: 888

Re: CreateObject( "MSXML2.XMLHTTP" )

Hello Silvio, Can you use a web server on the WINDOWS 7 PC_ You could then call the localhost silently and save the response XML 'file and then read it with memoread. If you can install mod harbour, you can create the DBF file immediately. Best regards, Otto http://localhost/silvio/index.html ...
by Otto
Thu Jan 21, 2021 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject( "MSXML2.XMLHTTP" )
Replies: 33
Views: 3236

Re: PDF generado desde programa en FiveWin

... oPrn FILE "filename.pdf"PAGE// your print statements to printENDPAGEENDPRINT  This will create a new file "filename.pdf" silently, instead of printing to a printer. I assume that you are not using a very very old version of FWH. Please let us know if you need any further ...
by nageswaragunupudi
Wed Jan 13, 2021 5:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: PDF generado desde programa en FiveWin
Replies: 21
Views: 5991

Re: Creating a silent file to .pdf

Rick Lipkin wrote:karinha

Compiled your code .. is there a way to automate this silently .. like button:CLick() .. and not show the button bar ?

Thanks
Rick Lipkin


I think so, but you have to wait for Master NAGES, I have no experience with that. Msiter NAGES, for sure will give you a safe path.

Regards, saludos.
by karinha
Tue Oct 06, 2020 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a silent file to .pdf
Replies: 18
Views: 2193

Re: Creating a silent file to .pdf

karinha

Compiled your code .. is there a way to automate this silently .. like button:CLick() .. and not show the button bar ?

Thanks
Rick Lipkin
by Rick Lipkin
Tue Oct 06, 2020 1:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a silent file to .pdf
Replies: 18
Views: 2193

Re: Creating a silent file to .pdf

... This code works fine if you send the output to the previewer ( rpreview.prg ) and select the Adobe icon .. I was hoping to create this form silently and send it to file as a Pdf .. Any ideas ?? FWHARU sounds like a Great option if I can get it to work .. Appreciate any ideas ! Thanks Rick ...
by Rick Lipkin
Thu Sep 10, 2020 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a silent file to .pdf
Replies: 18
Views: 2193

Re: Imprimir archivo .TXT con Printer.prg

This generates the pdf silently. #include "fivewin.ch"function Main()   local cText := MEMOREAD( "c:\fwh\samples\yunus.prg" )   local oPrn, oFont   PRINT oPrn FILE "archivo.pdf"   DEFINE ...
by FranciscoA
Sun Sep 06, 2020 5:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir archivo .TXT con Printer.prg
Replies: 7
Views: 777

Re: Imprimir archivo .TXT con Printer.prg

This generates the pdf silently. #include "fivewin.ch"function Main()   local cText := MEMOREAD( "c:\fwh\samples\yunus.prg" )   local oPrn, oFont   PRINT oPrn FILE "archivo.pdf"   DEFINE ...
by nageswaragunupudi
Sat Sep 05, 2020 8:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir archivo .TXT con Printer.prg
Replies: 7
Views: 777

Re: ToExcel() nombre de archivo

No.

But you can save to a file silently, without showing the excel like this:
Code: Select all  Expand view

oSheet := oBrw:ToExcel( nil, nil, nil, .F. )
oSheet:Parent:SaveAs( "filename_with_fullpath.xlsx" )
 
by nageswaragunupudi
Wed Aug 05, 2020 5:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ToExcel() nombre de archivo
Replies: 2
Views: 433

Re: How to print PDF file without GUI?

... You can download "pdftoprinter.exe" and then use it on command line [path]\pdftoprinter.exe <pdfnamewithfullpath>  Silently prints to the default printer. From FWH program, you can run this command with WaitRun() or WinExec() Thank you again. Dutch
by dutch
Thu Feb 27, 2020 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to print PDF file without GUI?
Replies: 17
Views: 3088

Re: How to print PDF file without GUI?

... You can download "pdftoprinter.exe" and then use it on command line [path]\pdftoprinter.exe <pdfnamewithfullpath>  Silently prints to the default printer. From FWH program, you can run this command with WaitRun() or WinExec()
by nageswaragunupudi
Thu Feb 27, 2020 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to print PDF file without GUI?
Replies: 17
Views: 3088
Next

Return to advanced search