Please tell me how to obtain the return value from VB 6.0 application in Siebel Server script.

Showing Answers 1 - 1 of 1 Answers

Lalmani

  • Jul 4th, 2006
 

Hi,

   To return a value you need to assign the value to be returned to the method name. Here is the example of 'return' in a Method -

=========================================

Function NAME (In As String) As String

Dim MyReturn

---------------
 MyReturn = "returnval"

---------------

--------------

NAME  = MyReturn

End Function

===================================================

- Lal

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions