Hi,
I'm currently working on a project to create a program that runs inside Opus (by Bruker).
Opus has a basic form designer (circa VB6 era by the look of it) with any code you write done in VB6:
So you can use some properties that we all recognise like locked and mousepointer, but there are restrictions like not using the visible property and instead having to use HideControl and ShowControl.
There is some documentation, but I'm struggling what to Google for as I've never seen VBScript used with forms and there are rarely any posts relating to this. I try VB6 syntax and this sometimes works. The code editor is as functional as Notepad, so no Intellisense, debugger or anything really.
Has anyone come across another product that uses the combination of VBScript and MS Forms that has decent documentation?
Thanks
Kristian
I'm currently working on a project to create a program that runs inside Opus (by Bruker).
Opus has a basic form designer (circa VB6 era by the look of it) with any code you write done in VB6:
Code:
dateExperimentStart = Now
TimerRunScript.enabled = True
Form.ShowControl("btnStopTempScript")
Form.HideControl("listTemperatureScript")
Form.HideControl("txtSelectedScan")
Form.HideControl("txtSelectedTemperature")
Form.HideControl("txtSelectedHoldTemperature")
Form.HideControl("btnUpdateTemperatureScript")
Form.ShowControl("listTemperatureScript")
listTemperatureScript.Locked = True
listTemperatureScript.MousePointer = 12
There is some documentation, but I'm struggling what to Google for as I've never seen VBScript used with forms and there are rarely any posts relating to this. I try VB6 syntax and this sometimes works. The code editor is as functional as Notepad, so no Intellisense, debugger or anything really.
Has anyone come across another product that uses the combination of VBScript and MS Forms that has decent documentation?
Thanks
Kristian