RPC HELP DLL ExportFN RPCBPropGet Example: Difference between revisions

From VistApedia
Jump to navigationJump to search
Created page with " RPC Broker Help Home DLL Interface Home <h2>RPCBMultPropGet Examples</h2> <h3>C</h3> RPCBMultPropGet(RPCBroker..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


[[RPC_HELP_Other_DLL_Interface_List|DLL Interface Home]]
[[RPC_HELP_Other_DLL_Interface_List|DLL Interface Home]]
<h2>RPCBMultPropGet Examples</h2>
<h2>RPCBPropGet Examples</h2>
<h3>C</h3>
    RPCBPropGet(RPCBroker, "Connected", Value);


<h3>C</h3>
    RPCBMultPropGet(RPCBroker, 0, "Count", Value);
<h3>C++</h3>
<h3>C++</h3>
     MyInstance.RPCBMultPropGet(0, "Count", Value);
     MyInstance.RPCBPropGet("Connected", Value);
<h3>Visual Basic</h3>
<h3>Visual Basic</h3>
     Call RPCBMultPropGet(intRPCBHandle, 0, "Count", strResult)
     Call RPCBPropGet(intRPCBHandle, "Server", strResult)

Latest revision as of 14:55, 8 July 2015

RPC Broker Help Home

DLL Interface Home

RPCBPropGet Examples

C

   RPCBPropGet(RPCBroker, "Connected", Value);	

C++

   MyInstance.RPCBPropGet("Connected", Value);

Visual Basic

   Call RPCBPropGet(intRPCBHandle, "Server", strResult)