
Using PowerShell to Databind a Combobox with a Value and some Text
This post provides an example of using PowerShell to databind a combobox with a value and some text. Creating a combobox in Powershell and adding an item to it is a relatively trivial task: $combobox = New-Object System.Windows.Forms.ComboBox $combobox.Items.add("alkane") The...