Gets or sets the IP address of passive entity computer for HSMS connection. IPAddress property will be ignored if the Server property is set to true, because server listens incoming connection.
When connecting local computer (same computer), use “127.0.0.1” or “” (empty) string.
It is possible to use computer name instead of IP address.
Syntax
|
CString GetIPAddress()
void SetIPAddress(LPCTSTR)
|
Return Value
Example
|
.IPAddress = ""
.PortNumber = 5000
.LocalPortNumber = 0
.Server = False
|
|
m_ctrl.SetIPAddress("");
m_ctrl.SetPortNumber(5000);
m_ctrl.SetLocalPortNumber(0);
m_ctrl.SetServer(false);
|
Remarks
Persistent property.
See Also
|