Search found 37 matches: getfile

Return to advanced search

Re: returning a wchar_t variable back to harbour function

Yes, Mr. Rao, it does work.

I followed the header file down into getfile.c and saw how it is being done and why it works. It is a good learning experience for me.

Thank you very much,
by reinaldocrespo
Wed May 24, 2023 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: returning a wchar_t variable back to harbour function
Replies: 4
Views: 270

Re: IA

... an image: https://silo.tips/download/erstellen-von-tablet-pc-anwendungen-mit-visual PROCEDURE cmdLoad.Click lsInk = CREATEBINARY(FILETOSTR(GETFILE("isf"))) thisform.inkoverlay.Enabled = 0 thisform.inkoverlay.ink.Load(lsInk) thisform.inkoverlay.Enabled = 1 *--Tell control to redraw, ...
by Antonio Linares
Wed Apr 06, 2022 11:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IA
Replies: 19
Views: 1741

Re: Soap Web Service

... type="s:string" /> </s:sequence> </s:complexType> </s:element> <s:element name="Getfile"> <s:complexType /> </s:element> <s:element name="GetfileResponse"> <s:complexType> <s:sequence> ...
by byron.hopp
Wed Jan 26, 2022 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service
Replies: 7
Views: 924

Re: cGetFile32() about traditional Chinese characters

... seems cGetdir.obj needs to call other lib to work CW32.lib is borland C++ library. fw_retWide() is from: \fwh2006\source\winapi\getfile.c void fw_retWide( LPWSTR pWide ){    LPSTR pText;   pText    = UTF16toSTR8( pWide, fw_wcslen( pWide ) );   hb_retc( ...
by ssbbs
Fri Dec 03, 2021 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile32() about traditional Chinese characters
Replies: 11
Views: 863

Re: aGetfiles bug

Thank you, Giovany! But i have the problem at aGetfiles() for selecting more files than one! I think, the error comes from this lines in getfile.c (line 141...). There are not enough memory reserved for the files selected. Antonio, please look.   pFile = ( LPSTR ) hb_xgrab( ( ...
by byte-one
Wed Feb 13, 2019 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: aGetfiles bug
Replies: 27
Views: 3959

Re: aGetfiles bug

Edit the file getfile.c at line 365 and 366. Change the values.

Code: Select all  Expand view

  //pFile = fw_parWideLen( 8, 512 );
  //pFilter = fw_parWideLen( 1, 800 );
  pFile = fw_parWideLen( 8, 4096 );
  pFilter = fw_parWideLen( 1, 2400 );

 
by Giovany Vecchi
Wed Feb 13, 2019 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: aGetfiles bug
Replies: 27
Views: 3959

Re: aGetfiles bug

Günther,

In FWH getfile.c source code there is a:

#define SIZE_IN_BYTES 15384

Please try to increase its size and test it again, thanks
by Antonio Linares
Fri Jan 18, 2019 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: aGetfiles bug
Replies: 27
Views: 3959

kb of Image

How I can show with a say the kb of a image ( load from getfile() ) ?
by Silvio.Falconi
Mon Sep 30, 2013 1:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: kb of Image
Replies: 3
Views: 664

Re: RPreview FWH 13.07 Bug?

... "TPreview" ),;+                               oDevice:cName, oDevice:cDocument ) + ".pdf"  ) And finally in source/winapi/getfile.c: remove:   BOOL bSave = IF( hb_pcount() > 4 && HB_ISLOG( 5 ), hb_parl( 5 ), FALSE );add:   BOOL ...
by Antonio Linares
Sat Aug 03, 2013 5:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RPreview FWH 13.07 Bug?
Replies: 19
Views: 3836

Re: Saber Metodos de un CREATEOBJECT

... BSTR ) STDCALL dispatch FUNC BSTR GetDriveName( [in] BSTR ) STDCALL dispatch FUNC BSTR GetParentFolderName( [in] BSTR ) STDCALL dispatch FUNC BSTR GetFileName( [in] BSTR ) STDCALL dispatch FUNC BSTR GetBaseName( [in] BSTR ) STDCALL dispatch FUNC BSTR GetExtensionName( [in] BSTR ) STDCALL dispatch ...
by Antonio Linares
Sun May 12, 2013 4:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber Metodos de un CREATEOBJECT
Replies: 62
Views: 32315

Re: Agregar la extensión automáticamente a cGetFile32()

Quique,

En FWH/source/winapi/getfile.c busca por:

ofn.Flags

y modificalo asi:

Code: Select all  Expand view
  ofn.Flags           = OFN_PATHMUSTEXIST | OFN_NOCHANGEDIR | OFN_ADDEXTENSION |
                        IF( bSave, OFN_HIDEREADONLY, 0 ) |
                        IF( bLongNames, OFN_LONGNAMES, 0 );
by Antonio Linares
Thu May 02, 2013 1:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agregar la extensión automáticamente a cGetFile32()
Replies: 14
Views: 2762

Re: Agregar la extensión automáticamente a cGetFile32()

hola

la funcion esta en

C:\fwh\source\function\dlgs32.prg
C:\fwh\source\winapi\getfile.c


deberas probar, yo no lo he probado
by Patricio Avalos Aguirre
Wed May 01, 2013 2:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agregar la extensión automáticamente a cGetFile32()
Replies: 14
Views: 2762
Next

Return to advanced search