| Software Entwicklung |
|
|
|
![]() |
System.Net.IPHostEntry ipEntry = System.Net.Dns.GetHostByName(this.hostName.Text); // stop repainting this.combIPAddress.BeginUpdate(); // clear the comboBox this.combIPAddress.Items.Clear(); foreach (IPAddress i in ipEntry.AddressList) { this.combIPAddress.Items.Add( i.ToString() ); } this.combIPAddress.Text = this.combIPAddress.Items[0].ToString(); // restart painting this.combIPAddress.EndUpdate(); |