Search found 112 matches: silent

Return to advanced search

Re: xHarbour.org updated!

... FROM 0,0 TO 600,800 PIXEL TITLE "PORTO SEGUROS" oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" ) oActivex:Silent := .T. oChildWnd:oClient = oActiveX oActiveX:Do( "Navigate2", cSite ) ACTIVATE WINDOW oChildWnd RETURN NIL // FIN / END Regards, ...
by karinha
Wed Sep 20, 2023 1:11 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37435

Re: Shell.Explorer.2 problem

oActiveX:Silent := .T. Thank you for your reply. Adding this line of code causes the error message to not be displayed however, the activex window is blank. Upon further investigation I believe the problem may be because the ...
by Randal
Mon Jun 26, 2023 11:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Re: Shell.Explorer.2 problem

... cTitle DEFINE WINDOW oChildWnd FROM -1, -1 TO -1, -1 PIXEL oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" ) oActivex:Silent := .T. oChildWnd:oClient = oActiveX // oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" ) //oActiveX:Do( ...
by karinha
Mon Jun 26, 2023 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Re: Shell.Explorer.2 problem

Try

oActivex:Silent := .T.

Code: Select all  Expand view

   oActivex  : Silent := .T.
 


Rgards, saludos
by karinha
Mon Jun 26, 2023 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Re: Display thumbnails of pdfs

... create JPG in different resolutions and previews of other file types. With mod harbour you have the advantage that the creation of the preview is silent. Best regard, Otto https://mybergland.com/fwforum/xdocviewer.mp4
by Otto
Wed Nov 02, 2022 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2266

Re: Splash Screen for Startuo

... [nSeconds], [lTransparent] ) // old 2) MsgSplash( cImageFile, [nSeconds], [bAction], [lTransparent] ) Using bAction parameter, we can do silent tasks like connecting to server, opening files, etc (without any screen activity) and be ready by the time splash image is closed.
by nageswaragunupudi
Mon Oct 24, 2022 5:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Splash Screen for Startup
Replies: 14
Views: 799

Switching the desktop to the online program

... reports. "FastReport" is similar to L&L in terms of functionality. Now you can set "FastReport" to generate a PDF in "silent mode". On our web servers, we have installed our "Grafton Street local host server" in addition to APACHE. If, for example, reports ...
by Otto
Thu May 19, 2022 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching the desktop to the online program
Replies: 2
Views: 353

Re: Google Map

oActivex:Silent := .T. // Para Evitar: Erro de Script na Pagina.
by karinha
Wed Feb 02, 2022 12:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Map
Replies: 5
Views: 562

Automated Outlook e-mail and sending plain text

... / Travel Program"+chr(10)         cBody    += "  "+chr(10)  Not rocket science so far .... Here is my Outlook "silent" e-mail generation .... Try   oOutLook  := TOleAuto():New("Outlook.Application")Catch    Saying := "For some ...
by Rick Lipkin
Tue Oct 19, 2021 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Re: Unattended creation of .pdf .. resolution problem -- Rao

Rao

Appreciate your advice this ( silent ) .pdf is created for standard 8.5 x 11 paper .. would you mind sending me the sample code for setting the paper size ?

May thinks!!

Rick Lipkin
by Rick Lipkin
Mon Sep 20, 2021 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unattended creation of .pdf . resolution problem -- RESOLVED
Replies: 9
Views: 1285

Re: Ajustar contenido página web en control TDockPnel

... el sitio, lo que no funciona son los estilos y javascript que tiene el sitio, si lo lanzamos dentro de la ventana. Si le sacas oActiveX:Silent := .T., veras que te dice que no puede cargar. Eso que no puede cargar es lo que le da estilo y funcionalidad a la web. Con tu ultimo ejemplo, ...
by cmsoft
Sun Sep 19, 2021 8:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055

Re: Ajustar contenido página web en control TDockPnel

... OF oDlg oActiveX:nDlgCode = DLGC_WANTALLKEYS oDlg:oClient = oActiveX ACTIVATE DIALOG oDlg CENTERED ; ON INIT ( oDlg:Resize(), oActiveX:Silent := .T., oActiveX:Navigate( cURL ) ) RETURN NIL Regards, saludos.
by karinha
Sun Sep 19, 2021 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055

Re: Ajustar contenido página web en control TDockPnel

... WINDOW oChildWnd FROM 0, 0 TO 600, 800 PIXEL TITLE cTitle oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" ) oActivex:Silent := .T. oChildWnd:oClient = oActiveX oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" ) oActivex:SetFocus() ...
by karinha
Sat Sep 18, 2021 3:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055

Re: MySql Nativa Transacciones. At. Mr. Rao

... := .t., then the Execute() method will raise a runtime error for failure of DML statements only ( DML: INSERT/UPDATE/DELETE ) and will be silent for errors with other SQL queries. If programmer sets :lRaiseErrorALL := .t., then the Execute() method will raise a runtime error for failure ...
by nageswaragunupudi
Fri Sep 17, 2021 6:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2454

Re: Ajustar contenido página web en control TDockPnel

... nL, nH, nW ) local oActiveX, oHttp, oActiveXdo oActiveX := TActiveX():New( oParent, "Shell.Explorer.2", nT, nL, nW, nH ) oActivex:Silent := .T. // aqui silence... en el script. oActiveX:Do( "Navigate", cUrl ) oActivex:SetFocus() WHILE oActivex:Busy SysWait(.2) ...
by karinha
Sun Feb 07, 2021 1:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055
Next

Return to advanced search