This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- calling wordpad...
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 13, 2010
06:39 PM
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);
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);
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 14, 2010
07:01 AM
Have you tried surrounding the file location with quotes?
Maybe your file location has spaces contained within it?
Maybe your file location has spaces contained within it?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 14, 2010
08:02 AM
does this work?
szProg1 = TARGETDIR ^ "readme_ES.rtf";
LongPathToQuote(szProg1, TRUE);
LaunchApp (SZWORD, szProg1);
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 14, 2010
01:35 PM
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?
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?