Search found 88 matches: ext

Return to advanced search

Re: ADO / Excel / XBROWSE / FWAdoStruct() / Edit()

... cat = New ADOX.Catalogcat.ActiveConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source="& myfile & ";Extended Properties=Excel 8.0"Set tbl = New ADOX.Tabletbl.Name = "Sample"'do this for each column in the tableSet col = New ADOX.ColumnWith ...
by Jimmy
Mon Aug 14, 2023 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO / Excel / XBROWSE / FWAdoStruct() / Edit()
Replies: 8
Views: 258

Re: How to get libssl.lib and libcrypto.lib for MSC?

https://i.imgur.com/DSHNUkE.png https://i.imgur.com/B0C5VvV.png vc_dll2lib.bat @echo off REM Usage: dll2lib [32|64] some-file.dll REM REM Generates some-file.lib from some-file.dll, making an intermediate REM some-file.def from the results of dumpbin /exports some-fi...
by carlos vargas
Wed Jul 26, 2023 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 270

Re: Associated Application ICONS

... needed. This feature was availabe for many years Till FWH2206, we need to specify an existing file, From FWH2210, it is enough if we specify dot ext , eg: ".DOCX", ".PDF", etc. , but limited to sizes 16x16 a,nd 32x32 only
by nageswaragunupudi
Fri Nov 04, 2022 4:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Associated Application ICONS
Replies: 9
Views: 732

Re: Manupulate PDF via Acrobat PRO DC

What exectly is pagHilitelist:Add(0, 9000)? Are those the coordinates? Is the number of word to collect ... pagHilitelist:Add(0, 9000) collect the first word to word 9000 . if use Add( 0,10 ) Hilite the first 10 word , if use add( 10,20 ) Hilite the word nomber 11 to 19 , ( first word is 0 ) . if y...
by mastintin
Mon Dec 27, 2021 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manupulate PDF via Acrobat PRO DC
Replies: 23
Views: 3694

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

este es el archivo MAK completo ############################################################################## # Template make file for FWH and Borland 7 Make tool # # Pograma: Winfar64 # ############################################################################## # Make directives ###############...
by rterraz
Sat Sep 18, 2021 2:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4976

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

Antonio...me da verguenza seguir molestándote , pero no hay caso! Las librerias están todas enlazadas usando el harbour tuyo aca te muestro la parte correspondiente del MAK $(APP_EXE) :: $(APP_OBJS) @echo $(STARTUP_OBJ) + > make.tmp @echo $(**), + >> make.tmp @echo $(APP_EXE), + >> ma...
by rterraz
Sat Sep 18, 2021 1:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4976

Re: API Bancaria (SOLUCIONADO)

Buenas tardes, dejo aquí la versión definitiva en forma de clase. #include "Fivewin.ch"class TApiBBVA    data oWnd           && Ventana Padre    data cNomObjOLE     && Nombre del objeto OLE para hacer GET y POST    data cAppID         && Informaci¢n APP creada en BB...
by gmart1
Wed Apr 21, 2021 3:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: API Bancaria (SOLUCIONADO)
Replies: 17
Views: 2296

AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"> <ext:UBLExtensions> <ext:UBLExtension> <ext:ExtensionContent><ds:Signature ...
by CARLOS ATUNCAR
Sun Mar 14, 2021 3:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1379

Problem with conversion Image on W7

... black line I not Know why ... to create jpg from Png I made hBmp := FW_ReadImage( nil, cFile )[ 1 ] hNew := FW_TransformBitmap( hBmp, NIL, 40) ext:= aExt[ntipo] cNewfile:= cFolderTemp+cNewName+ext FW_SaveImage( hBmp,cNewfile ,90) then to converte jpg to BMP I made cFileBmp:= savetobmp(cfileJpg) ...
by Silvio.Falconi
Sat May 16, 2020 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with conversion Image on W7
Replies: 7
Views: 773

Re: How to have a sharp image conversion

... while resizing. So, do you want to convert a png file as jpg with reduced size? local nJpgQuality := 90 FW_SaveImage( cFile, cFolderTemp+cNewName+ext,nJpgQuality ) and now run ok This saves png as jpg but does not reduce the size. Is that what you want? Can you please 1) Let me know why do you ...
by nageswaragunupudi
Sat Feb 29, 2020 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to have a sharp image conversion
Replies: 14
Views: 2274

Re: How to have a sharp image conversion

Rao,
Now I tried with

local nJpgQuality := 90

FW_SaveImage( cFile, cFolderTemp+cNewName+ext,nJpgQuality )

and now run ok
Image


before png->jpg
then jpg->bmp
and the image is clear now
by Silvio.Falconi
Sat Feb 29, 2020 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to have a sharp image conversion
Replies: 14
Views: 2274

How to have a sharp image conversion

... nResize:=0.30 hBmp: = FW_ReadImage (nil, cFile) [1] hNew: = FW_TransformBitmap (hBmp, NIL, nResize) FW_SaveImage (hNew, cFolderTemp + cNewName + ext, 40) but then using a combo I don't see the sharp image JPG https://i.postimg.cc/wx1V317B/gh.png if I turn it into a bmp format ...
by Silvio.Falconi
Sat Feb 29, 2020 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to have a sharp image conversion
Replies: 14
Views: 2274

dbrowse.prg

... C:\Windows\SYSTEM32\SSPICLI.DLL 00007FF81B9C0000 000000000000D000 C:\xampp\php\php7apache2_4.dll 00007FF81A0E0000 0000000000019000 C:\xampp\php\ext\php_bz2.dll 00007FF811D30000 0000000000089000 C:\xampp\php\ext\php_curl.dll 00007FF83B900000 0000000000068000 C:\Windows\System32\WLDAP32.dll 00007FF83A170000 ...
by gruncic
Fri Nov 01, 2019 2:41 pm
 
Forum: mod_harbour
Topic: dbrowse.prg
Replies: 6
Views: 1146

Re: En FastReport, cómo guardar con diferente EXT?

José Luis:

Pues así parece, no hay forma de abrir los formatos con otra extensión.

Saludos
by Armando
Sun Jun 23, 2019 11:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: En FastReport, cómo guardar con diferente EXT?
Replies: 7
Views: 1265

Re: En FastReport, cómo guardar con diferente EXT?

Amigos: He logrado modificar el archivo XML y puedo salvar con diferente extensión, el problema ahora es que para abrir un diseño solo se pueden abrir las que tienen extensión .fr3, no permite abrir otra extensión. Modifique en   <StrRes Name="dsRepFilter" Text="Informe (*.fr3)|*....
by joseluisysturiz
Sun Jun 23, 2019 8:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: En FastReport, cómo guardar con diferente EXT?
Replies: 7
Views: 1265
Next

Return to advanced search