Forum Discussion
Heldenbrand
Jan 18, 2022Copper Contributor
Buttons and Event Handlers
I am trying to utilize Powershell Protools to create a windows form so that user input can be used to create an account in AD, I have the form, and want to test it. My issue is I cannot seem to find/...
Heldenbrand
Jan 18, 2022Copper Contributor
Sorry, below is the script that references the script above, in case that makes any difference:
$Label8_Click = {
}
$CANCEL = {
}
$SUBMIT = {
}
Add-Type -AssemblyName System.Windows.Forms
. (Join-Path $PSScriptRoot 'ad_forms.designer.ps1')
$Form1.ShowDialog()