Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
function Disable-ComboBox ([ref][System.Windows.Forms.ComboBox]$comboBox)
{
$comboBox.Value.IsEnabled = $false
}
function Enable-Button ([ref][System.Windows.Forms.Button]$button)
{
$button.Value.IsEnabled = $True
}
Disable-ComboBox($myCombobox)