Syntax
Readonly Property MoneyTrans As VertexFXBOAPI.CMoneyTransI
Description
This property used to do money transactions operations for a specific account.
Members
Members |
Description |
Adjustment |
To make an adjustment on money that belong to a certain account |
CreditIn |
To add some money to specific account as a dept |
CreditOut |
To cut some money from specific account as a dept |
Deposit |
To add money to specific account |
Withdrawal |
To cut money from specific account |
Parameters
Part |
Description |
AccountID |
Associated account number you want to do the money transaction on it,value of type Integer. |
Amount |
The amount of the transaction ,value of type double. |
Description |
The description of the transaction ,value of type string. |
UserDefinedDate |
The start date for the money transaction ,value of type Date.(optional value) . |
Sample
Public WithEvents BOAPI As CVertexFXBOAPI
Private Sub MoneyTrans_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MoneyTrans.Click
Dim vClient As COClient = BOAPI.ClientByIndex(1)
Dim vAccount As COAccount = BOAPI.AccountByIndex(vClient.ClientID,1)
Dim Result As CallingResultsEnum
Result = BOAPI.MoneyTrans.Deposit(vAccount.AccountID ,100,"Deposit","")
MsgBox(Result)
End Sub
See Also
VertexFX Backoffice API Index
|