Hello,
I succeeded to modify a project (.ism) with another one with automation only int the Property table
Is a simple way to do the same in another table ? (the Directory one for exemple)
My working code :
set BIBProject = CreateObject ("ISWiAutomation.ISWiProject");
BIBProject.OpenProject ("C:\\_indus\\template.ism");
MessageBox (BIBProject.ProductVersion, INFORMATION);
BIBProject.ProductVersion=2;
BIBProject.ProductName="Template BIB";
BIBProject.SaveProject;
BIBProject.CloseProject;
Could you give me a concrete exemple ? (add some lines to my code to modify another table)
Thank's