cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
thanatos83
Level 5

calling wordpad...

Hi all !

When i finished the installation of my release then i check the box of "see readme file" from "SdFinish" dialog.

but wordpad loads fine, however not find the file . I don't know what happened with this....

Please anybody knows to load the file "readme_ES.rtf" with wordpad ???

thanks 🙂

// Include header files
#define SZWORD PROGRAMFILES ^ "\\Windows NT\\Accessories\\wordpad.exe"

szProg1 = TARGETDIR ^ "readme_ES.rtf";
LaunchApp (SZWORD, szProg1);
Labels (1)
0 Kudos
(3) Replies
Vijay__K
Level 7

Have you tried surrounding the file location with quotes?
Maybe your file location has spaces contained within it?
0 Kudos
MrTree
Level 6

does this work?

szProg1 = TARGETDIR ^ "readme_ES.rtf";
LongPathToQuote(szProg1, TRUE);
LaunchApp (SZWORD, szProg1);
0 Kudos
thanatos83
Level 5

Hi.

yes i fixed this, thanks both...

The problem was "LongPathToQuote", i forget putting this. Now, wordpad find this file correctly.

One Question:
==========
I read the documentation about "Static Link File or dynamically", i'm confuse about this. What is the main diference about both?.
So it is recomended to use Static File or dynamically?
0 Kudos