Search found 951 matches: createobject

Return to advanced search

Re: CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout

... FUNCTION MAIN LOCAL oPdfCreator LOCAL oDlg LOCAL oButton DEFINE DIALOG oDlg // @ 1 , 1 BUTTON oButton OF oDlg ACTION ( oPdfCreator := CreateObject( "PDFCreator.PDFCreatorObj" ) , MsgInfo( oPdfcreator ) ) @ 1 , 1 BUTTON oButton OF oDlg ACTION MsgInfo( "Test" ) ACTIVATE ...
by MarcoBoschi
Mon Jan 29, 2024 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout
Replies: 15
Views: 964

Re: CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout

Change this and report back if the problem persist, please:

Code: Select all  Expand view
@ 1 , 1 BUTTON oButton OF oDlg ACTION MsgInfo( "Test" )
by Enrico Maria Giordano
Mon Jan 29, 2024 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout
Replies: 15
Views: 964

CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout

... MAINLOCAL oPdfCreatorLOCAL oDlgLOCAL oButtonDEFINE DIALOG oDlg@ 1 , 1 BUTTON oButton OF oDlg ACTION  ( oPdfCreator := CreateObject( "PDFCreator.PDFCreatorObj" ) , MsgInfo( oPdfcreator ) )ACTIVATE DIALOG oDlg CENTERRETURN NIL 
by MarcoBoschi
Mon Jan 29, 2024 10:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject( "PDFCreator.PDFCreatorObj" Scale and Layout
Replies: 15
Views: 964

CONEXION ADODB SQL SERVER

... osea que abre la conexión sin problema // ahora procedo a abrir el recorset TRY orsPed := TOleAuto():New("adodb.recordset") // orsPed:= CreateObject("ADODB.Recordset") CATCH oError MsgStop( "No se ha podido crear el RECORDSET de Pedidos!", oApp:cAplicacion) ShowError(oError) ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 4
Views: 292

CONEXION ADODB SQL SERVER

... osea que abre la conexión sin problema // ahora procedo a abrir el recorset TRY orsPed := TOleAuto():New("adodb.recordset") // orsPed:= CreateObject("ADODB.Recordset") CATCH oError MsgStop( "No se ha podido crear el RECORDSET de Pedidos!", oApp:cAplicacion) ShowError(oError) ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 0
Views: 151

Re: HTML code in a TPanel class

... telegram information arrived in the application. I had to give up because I always had problems in the various operating systems that the famous CreateObject( "MSXML2.DOMDocument" ) and CreateObject( "MSXML2.XMLHTTP" ) protocols did not work. give me erros as Error description: ...
by Silvio.Falconi
Mon Jan 22, 2024 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML code in a TPanel class
Replies: 9
Views: 1365

Soap Web Service - timeout request

... to set a timeout request for a web service request? I added to IF oHttp:status=200 to check status but sometimes request hangs. TRY oHttp := CreateObject( 'MSXML2.XMLHTTP' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END cHttpSend := [<?xml version="1.0"?>] cHttpSend ...
by cdmmaui
Mon Jan 08, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 709

PRINT oPrn NAME cTitle PREVIEW

... button before begins print I can set folder and name of pdf file to create using using the usual pdfcreator instruction set oPdf = CREATEOBJECT( "PDFCreator.JobQueue" ) oPdf:Initialize() Have I to need to edit rpreview.prg to obtain this goals?
by MarcoBoschi
Mon Dec 11, 2023 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT oPrn NAME cTitle PREVIEW
Replies: 2
Views: 307

Subuir un fichero a un servidor

... se hace pero no encuentro nada. Este es el codigo que utilizo: ... cUrl := "url..." cFile := "X:\PDFS\FICHERO.PDF" xDoc := CreateObject( "MSXML2.DOMDocument" ) ohttp := CreateObject( "MSXML2.XMLHTTP" ) ohttp:Open( "POST" , cUrl, .f.) oHttp:SetRequestHeader("Content-Type" ...
by miarcod
Sun Nov 26, 2023 11:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Subuir un fichero a un servidor
Replies: 18
Views: 2299

Re: Obtener el nombre del OS o version de Windows

... la version del OS que esta en ejecución, actualmente utilizo GETENV("OS"), en la mayoría indica windows_nt estoy utilizando oHttp:=CreateObject("winhttp.winhttprequest.5.1") oHttp:Open("GET","https://www.bcv.org.ve",.f.) Quien genera incidencias que ...
by JoseAlvarez
Wed Nov 22, 2023 11:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Obtener el nombre del OS o version de Windows
Replies: 7
Views: 894

Obtener el nombre del OS o version de Windows

... la version del OS que esta en ejecución, actualmente utilizo GETENV("OS"), en la mayoría indica windows_nt estoy utilizando oHttp:=CreateObject("winhttp.winhttprequest.5.1") oHttp:Open("GET","https://www.bcv.org.ve",.f.) Quien genera incidencias que ...
by jnavas
Wed Nov 22, 2023 8:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Obtener el nombre del OS o version de Windows
Replies: 7
Views: 894

Re: ID of the new process

... object to open the document. This way, you can get a reference to the process and access its properties. ```vbscript Set objShell = CreateObject("Shell.Application") Set objDoc = objShell.Document ' Open Word document Set objWord = objDoc.Application ' Now you can access ...
by Antonio Linares
Tue Nov 14, 2023 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the new process
Replies: 2
Views: 323

Re: enviar mensajes a whatsapp, ¿posible solucion?

... + cMensaje ), " ", "%20" ) ) SysRefresh() // ó SysWait( 5 ) prueba con distintos valores hasta que te funcione bien CreateObject( "WScript.Shell" ):SendKeys( "~" )
by Antonio Linares
Thu Oct 12, 2023 11:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4545

XML, CON ARCHIVO ADJUNTO PDF

... donde el XML trae una marca donde empieza el PDF y Finaliza,, estas son %PDF-1.4 dfhaskfhhuiahakjabv,cxzngiajfmknvjsfjgsdlnl %%EOF TRY oHttp := CreateObject( 'MSXML2.XMLHTTP.6.0' ) CATCH oHttp := CreateObject( 'Microsoft.XMLHTTP' ) END doc = CreateObject("MSXML2.DOMDocument.6.0") oHttp:Open( ...
by elmoiquique
Thu Sep 28, 2023 10:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2328

Enviar Correos CDO con fwh2307

Estimados buenas tardes. Al actualizarme a la versión fwh2307 ya no se puede enviar los correos utilizando CDO TRY oMsg := CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody = cMsg ...
by EASYSOFT
Mon Aug 21, 2023 5:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correos CDO con fwh2307
Replies: 15
Views: 886
PreviousNext

Return to advanced search