Hi all,
I'm a researcher and I use AIMMS with an Academic License.
AIMMS is part of a routine I developed in Python and I used the "AIMMSSelector" to launch AIMMS, but since my license is now a cloud license I've not been able to launch AIMMS that way, it does not recognize the license, and only give me option to add a stand alone license or a network license server.
I've been searching for materials regarding this, but couldn't find any. Can you help me?
Here is the code I used to launch AIMMS previously:
#Initialize AIMMS
sys.argv = g"makepy", "AimmsSelector.Selector64"]
AimmsObj = win32com.client.Dispatch("AimmsSelector.Selector64")
self.AimmsProj = AimmsObj.GetAimmsProject(f'{self.aimmsFileDir}\\{self.aimmsFileName}')
self.AimmsProj.StartupMode = 1 #Start minimized
self.AimmsProj.ProjectOpen(f'{self.aimmsFileDir}\\{self.aimmsFileName}', 0)