Search found 251 matches
- Fri Oct 26, 2018 11:10 am
- Forum: PowerShell GUIs
- Topic: Get-ADUser Filtering not working
- Replies: 5
- Views: 383
Re: Get-ADUser Filtering not working
Ah! First, in the form designer, double-click on the ComboBox field. This will create the event block "$combobox1_SelectedIndexChanged". In this event block, you'll add the code to save the value selected from the combox box: $labelDisplayComboSelected.Text = $combox1.SelectedItem.ToString() In the ...
- Fri Oct 26, 2018 10:18 am
- Forum: PowerShell GUIs
- Topic: Get-ADUser Filtering not working
- Replies: 5
- Views: 383
Re: Get-ADUser Filtering not working
You missed to display the selected item(s) from the combo box.
For Example:

For Example:
Code: Select all
$combobox1_SelectedIndexChanged = {
#TODO: Place custom script here
$labelDisplayComboSelected.Text = $combobox1.SelectedItem.ToString();
}

- Fri Oct 26, 2018 8:25 am
- Forum: PowerShell GUIs
- Topic: textbox
- Replies: 4
- Views: 362
Re: textbox
In the Textbox control, use the Text property to enter a text to be display when it initially open the forms.
Other than that, you could add code to keep displaying the text after it get's process.
Other than that, you could add code to keep displaying the text after it get's process.
- Thu Oct 25, 2018 9:12 am
- Forum: PowerShell Studio
- Topic: Latest update - Save button not working
- Replies: 9
- Views: 1330
Re: Latest update - Save button not working
Use the same forum, then add the issue you found. This creates will a different thread which we can track separately.


- Thu Oct 25, 2018 8:25 am
- Forum: PowerShell Studio
- Topic: Latest update - Save button not working
- Replies: 9
- Views: 1330
Re: Latest update - Save button not working
Thanks Olga!!
Hey Jasonv,
Can you please file a separate issue and provide some more information? This way we can keep it separately and track them better.
Greatly Appreciated!
Hey Jasonv,
Can you please file a separate issue and provide some more information? This way we can keep it separately and track them better.
Greatly Appreciated!
- Thu Oct 25, 2018 8:20 am
- Forum: PowerShell GUIs
- Topic: enable psremoting
- Replies: 2
- Views: 398
Re: enable psremoting
Please read carefully the PowerShell Get-Help information on both "Start-Process" and the "Invoke-Command". On the Start-Process cmdlet you can't include executable parameter(s) in the "-FilePath". And, on the "Invoke-Command", you probably need to use the "-RunAsAdministrator" parameter. Also, make...
- Thu Oct 25, 2018 7:51 am
- Forum: PowerShell Studio
- Topic: Latest update - Save button not working
- Replies: 9
- Views: 1330
Re: Latest update - Save button not working
Let me look into it. I'll get back to you!


- Thu Oct 25, 2018 7:41 am
- Forum: PowerShell Studio
- Topic: Latest update - Save button not working
- Replies: 9
- Views: 1330
Re: Latest update - Save button not working
Hum! Seems I can't replicate the issue with the "Save" button. I can see all options available in both a physical and on a virtual machine.
Curious, , but just in case ... Are you saving to a network drive?
Curious, , but just in case ... Are you saving to a network drive?
- Sun Oct 21, 2018 1:44 pm
- Forum: PowerShell Studio
- Topic: Crash when using class
- Replies: 3
- Views: 1099
Re: Crash when using class
Thanks for reporting this issue.
We'll investigate further and get back to you as soon as possible.
We'll investigate further and get back to you as soon as possible.
- Tue Oct 09, 2018 9:10 am
- Forum: PrimalSQL
- Topic: Version 4.4.65 unable to execute queries
- Replies: 10
- Views: 1513
Re: Version 4.4.65 unable to execute queries
In PrimalSQL. How this connection string was setup? SQLServer, ODBC, OLEDB This will help us troubleshooting the issue you're experiencing. Also, is you're using "integrated security=true;.." why are you using UserID and Password? If your Windows credential is already setup in SQL Server then there'...