On 10/11/13 2:42 PM, Samiththa Bashani wrote:
>  I tried the example that  is provided in open office tutorials(myRNG:
> http://wiki.openoffice.org/wiki/Simple_Calc_Add-in)
> 
> As it mentioned it can handled double inputs. But i can't find a way to
> handled strings as inputs.
> ex:
> 
> Sub Main
>       mgr = getProcessServiceManager()
>       o = mgr.createInstance("org.openoffice.sheet.addin.RNG")
>       //MsgBox o.expo(10)   //this is what tutorial has explained.
>          MsgBox o.expo("asd123asd")   // this is what i want to read
>  End Sub
> 
> Detailed answer will be highly apreciated.

The IDL description defines a function

double expo( [in] double m );

This have to be changed to use a string parameter. And the
implementation has to be adapted accordingly.

Juergen


> 
> thank you.
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to