Syntax
Public Function AcceptOrder(ByVal OrderId As Integer) As CallingResultsEnum
Description
This function used to accept a re-quoted order by given the order ID
Parameters
Parameter | Description |
OrderId | OrderID to be accepted , value of type Integer. |
Return value
Returns value of typeCallingResultsEnum.if the request sent to the server successfully it will returnSuccessResult
Sample
Public Sub Main () Dim Res as VTLGeneral.CallingResultsEnum Res = ClientCode.AcceptOrder(12345) 'it will return SuccessResult if sent to server successfully. GUI.MsgDialog(Res) End Sub
See Also