Another potentially useful script here. It pings a host and records the output in a log file. The ping continues until you press Ctrl+C to stop it. This is useful for running in a background monitoring connectivity response times to a host and seeing if there is any network dropout. Ping is no guarantee of
Continue reading Ping Host with a Log File
Month: January 2014
Using Enum with ComboBox and setting Combobox value – VB.net
This is my take on setting a combobox to use an enum which has both a description and key value set. It also shows how this works when trying to assign a value to the combobox. Enum MyLogEnum Error = 1 Warning = 2 Information = 3 End Enum ComboBox_LogLevel.DataSource = System.Enum.GetValues(GetType(MyLogEnum)) And to assign
Continue reading Using Enum with ComboBox and setting Combobox value – VB.net