Always evaluate these points before reporting an issue on the developers'
mailing list. (from install official by Viktor)
- If you are to report a problem with Harbour itself, always provide
self-contained, minimal source code example. Do not use xhb contrib
library, or any 3rd party Harbour libraries. The example shall reproduce
the problem using official stable or nightly Harbour build.
Do not post executables and other binary files.
FUNC MAIN
cFilename :="PÓLIZA DIRECTORES Y ADMINISTRADORES.TXT"
nHandle := FCreate( cFilename )
IF FError() # 0
MsgInfo( "Error with " + AllTrim( cfilename ) )
RETURN
ENDIF
FWrite( nHandle, "Hello"+chr(13)+chr(10))
ShellExecute(,"Open","'"+cFilename+"'",,,3) // can't not open file because created filename
// have changed characters
FClose( nHandle )