vbs createobject vs getobject
I am trying to write a VBS/VBA script in powerpoint which will get some information from a running JMP session. Here is the basic code.Sub test() Dim myjmp As JMP.Application Set myjmp = CreateObject("JMP.Application") myjmp.Visible = True 'some code to test running jsl myjmp.RunCommand ("transfer_data = 35;") areaHeight = myjmp.GetJSLValue("transfer_data") End SubIf the use...
