Business Objects Scripting Question

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

Venu Chakrapani
Project Leader
Lucent BusinessObjects Help-Desk
(w)(847) 673 0900 x129
venu@dunnsys.com
http://www.dunnsys.com


Listserv Archives (BOB member since 2002-06-25)

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.

HTH,
Donald May


Listserv Archives (BOB member since 2002-06-25)

Venu,

I’m not sure about the precise syntax, but …

Dim MyBO as object
Dim MyVar as object

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


Listserv Archives (BOB member since 2002-06-25)