cGetFile32 strange behaviour

Post Reply
AHF
Posts: 837
Joined: Fri Feb 10, 2006 12:14 pm

cGetFile32 strange behaviour

Post by AHF »

This code runs ok on win10 but not on one PC with win 7.
Another app with same code runs ok on both!

Code: Select all

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
User avatar
karinha
Posts: 4882
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: cGetFile32 strange behaviour

Post by karinha »

Code: Select all

#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
Post Reply