I want to access the tables in the installShield
using the InstallShield Automation(COM) interface.
These can be accessed using Direct Editor.
Usually I do as follows in jscript.
ISWIProject =
new ActiveXObject("ISWiAutomation.ISWiProject");
ISWIProject.OpenProject('MyProj.ism'

isProps = ISWIProject.ISWiSISProperties;
etc.
I could not find any property for accessing the tables,
of the database.
I would like to update rows and add rows etc.
Using the IDE you can do this by the
Advanced View -> Direct Editor.
You can do it through Windows installer COM interface also.
var wsh = WScript.CreateObject("WindowsInstaller.Installer");
But you need a .msi project, for this.
.ism does not work for this.
I have to make changes to the project tables
before I compile the .ism project file.
Any help will be appriciated.
Thanks
Saugata.