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
- :
- Custom Dialog .rul file
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Aug 18, 2009
03:23 PM
Custom Dialog .rul file
Hi All,
I am still in the process of evaluating IS 2010 and i am trying to covert my old project (MSI Installscript) written using IS 2009.
I have a .rul file called setupdlg2.rul which is included in my setup.rul file now when I converted my MSI Installscript project everything went fine except when i tried to compile, it started generating error like "fatal error F8511: cant open included file", I copied the file under .\script\isrt and my project path folder , still I keep getting the same error..
BTW: I have also trie including FULL PATH.
any suggesations?
TIA
I am still in the process of evaluating IS 2010 and i am trying to covert my old project (MSI Installscript) written using IS 2009.
I have a .rul file called setupdlg2.rul which is included in my setup.rul file now when I converted my MSI Installscript project everything went fine except when i tried to compile, it started generating error like "fatal error F8511: cant open included file", I copied the file under .\script\isrt and my project path folder , still I keep getting the same error..
BTW: I have also trie including FULL PATH.
any suggesations?
TIA
(2) Replies
‎Aug 20, 2009
05:10 AM
I think I had a similar problem along the way of upgrading.
Do not remember in which version it was though since I've been upgrading every version since ISPro 6 (and every version produced new bugs...).
Anyway, from within the IDE right click on "Setup.rul" and select "New Script File". Call it CustomDialogs.rul or something.
In Setup.rul include the new script file right after the ifx header is included.
E.g.
#include "ifx.h"
#include "CustomDialogs.rul"
Now copy all the code from your old setupdlg2.rul and paste it into the CustomDialogs.rul file (not directly to the file but from within the IDE).
That worked for me.
Do not remember in which version it was though since I've been upgrading every version since ISPro 6 (and every version produced new bugs...).
Anyway, from within the IDE right click on "Setup.rul" and select "New Script File". Call it CustomDialogs.rul or something.
In Setup.rul include the new script file right after the ifx header is included.
E.g.
#include "ifx.h"
#include "CustomDialogs.rul"
Now copy all the code from your old setupdlg2.rul and paste it into the CustomDialogs.rul file (not directly to the file but from within the IDE).
That worked for me.
‎Aug 20, 2009
01:11 PM
timelox wrote:
I think I had a similar problem along the way of upgrading.
Do not remember in which version it was though since I've been upgrading every version since ISPro 6 (and every version produced new bugs...).
Anyway, from within the IDE right click on "Setup.rul" and select "New Script File". Call it CustomDialogs.rul or something.
In Setup.rul include the new script file right after the ifx header is included.
E.g.
#include "ifx.h"
#include "CustomDialogs.rul"
Now copy all the code from your old setupdlg2.rul and paste it into the CustomDialogs.rul file (not directly to the file but from within the IDE).
That worked for me.
Hi ,
Thanks for your suggesation.. I would give it a world and get back to you.
however it is weird that IDE saves .rul files in some hidden path, I thought ..\src was the "system path" (if you will) for storing all .rul file..
bit confusing and lacks clarity..
Thanks for your help.