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
- :
- Re: Checking server path
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
‎Feb 06, 2009
02:10 AM
Checking server path
I try make a dialogbox with a text control which contain the server path, and a button which check if the server path is correct. How do that?
How to check if the server path is correct?
Thanks
How to check if the server path is correct?
Thanks
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 06, 2009
09:37 AM
Write a function and attach to a custom action which executes on your dialog's button click...
function should check for the path using Is() function where 1st argument to Is() will be PATH_EXISTS and the second argument will be the value in your Server path field which you will have to get using MsiGetProperty().
Hope this helps.
function should check for the path using Is() function where 1st argument to Is() will be PATH_EXISTS and the second argument will be the value in your Server path field which you will have to get using MsiGetProperty().
Hope this helps.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 08, 2009
09:29 AM
Apoorv Jain wrote:
Write a function and attach to a custom action which executes on your dialog's button click...
Ok, i write a function which display only a message and attach to a custom action. After set for button the DoAction to function name and condition to 1. When run my setup and push button see hourglass for 1-2 seconds without message. What happen if my code is ok?