Call Statement

प्रोग्राम का नियंत्रण सबरूटीन, फंक्शन या किसी डीएलएल प्रोसीज़र पर हस्तांतरित करता है.

Syntax:


[Call] Name [Parameter]

पैरामीटर

Name: Name of the subroutine, the function, or the DLL that you want to call

Parameter: Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing.

Note Icon

A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the Declare-Statement.


उदाहरण:


Sub ExampleCall
Dim sVar As String
    sVar = "LibreOffice"
    Call f_callFun sVar
End Sub

Sub f_callFun (sText as String)
    Msgbox sText
End Sub

Please support us!