FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour cGetFile32 strange behaviour
Posts: 838
Joined: Fri Feb 10, 2006 12:14 PM
cGetFile32 strange behaviour
Posted: Tue Jan 07, 2020 03:16 PM
This code runs ok on win10 but not on one PC with win 7.
Another app with same code runs ok on both!

Code (fw): Select all Collapse
cFile := cGetFile32("Ficheiros XML | *.xml|"+;
                             "Escolha onde vai gravar o ficheiro",1 )

MSGINFO(CFILE) // this shows before the previous dialog its closed!


Any ideas on what might be the issue.

Thanks.
Regards

Antonio H Ferreira
Posts: 8515
Joined: Tue Dec 20, 2005 07:36 PM
Re: cGetFile32 strange behaviour
Posted: Tue Jan 07, 2020 03:52 PM
Code (fw): Select all Collapse
#include "FiveWin.ch"

FUNCTION Main()

   LOCAL cFile

   cFile := SubStr( cGetFile( "*.XML", "Gravar o ficheiro XML" ), 1 )

   MsgInfo( cFile )


RETURN NIL
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341

Continue the discussion