canoe

Pywin32 COM not able to set attribute keyerror

Pywin32 COM not able to set attribute keyerror Question: I’m trying to automate something using its com interface. There are some problems which I can’t get my head around. app = DispatchEx(‘CANoe.Application’) configs = app.Configuration.TestConfigurations config = configs.Item(1) unit = config.TestUnits.Item(1) unit.Name unit.Enabled Until here it is fine, name and enabled will print out a …

Total answers: 1

CANoe multiple instances using win32com

CANoe multiple instances using win32com Question: I’m trying to create two CANoe instances using Python (win32com module). I’m trying to create two objects and open the configurations, but it creates only one instance. How can I achieve creating two CANoe instances? I disabled the option in the application which was to permit only one instance …

Total answers: 2

Deactivate Hot spots in CanOe using it's COM interface

Deactivate Hot spots in CanOe using it's COM interface Question: my issue is to deactivate a loggingblock in CanOE by using it’s COM interface. As programming langugage I’m using Python. I have Access to the LoggingCollection and can set the filename. Now I will deactivate this block, but I can’t find a way to do …

Total answers: 2