GetSetNet
Acquires all TCP/IP port parameters.
Syntax
GetSetNet ByRef returnedStringArrayVariable
Parameters
- returnedStringArrayVariable: Specifies a string array that stores the parameters of 16 TCP/IP ports.
Description
Use this command to acquire the settings for 16 TCP/IP ports.
See below for more details about the settings.
See Also
SetNet Statement
GetSetNet Example
String Info$(15)
Integer i
GetSetNet ByRef Info$()
For i = 0 To 15
Print "i = " + Str$(i) + ": " + Info$(i)
Next