I have created a VB Application which calls and executes a BOScript. I am looking for a way to let the VB user set the variable in VB and then pass it to the BoScript. The BOScript will then use the variable at execution. I would appreciate any input or suggestions anyone might have. Thanks
Perhaps you could use a VB ProfileString()/Number() function(s) to set a regestry/.ini file variable and use Business Objects GetProfileString()/Number() function(s) to retrieve the value.
Set MyBO = CreateObject(“BusinessObjects.Application”) Set MyVar = MyBO.Variables(“Foo”).Add
MyVar.Value = “Bar”
-Harri
I have created a VB Application which calls and executes a BOScript. I am looking for a way to let the VB user set the variable in VB and then pass it to the BoScript. The BOScript will then use the variable at execution. I would appreciate any input or suggestions anyone might have. Thanks