Servers
- Last UpdatedNov 17, 2021
- 1 minute read
This read-write property gets or sets the list of servers.
Syntax
aaHistClientTagPicker.Servers = aaServers;
Result = aaHistClientTagPicker.Servers;
Remarks
This property uses the aaServers object. For more information, see aaServer Object.
This property has no default value.
Example: Login
The following InTouch HMI software example adds the server MyInSQL1 to the Tag Picker and logs on to the server:
%NewServer = #aaHistClientTagPicker1.Servers.Add("MYINSQL1");
%NewServer.LoginID = "wwAdmin";
%NewServer.Password = "wwAdmin";
#aaHistClientTagPicker1.LogOn( %NewServer );