Search found 1809 matches

by brittneyr
Wed Dec 04, 2024 9:46 am
Forum: Former and Future Customers - Questions
Topic: Problems with turning on PowerShell Studio 2024
Replies: 2
Views: 47

Re: Problems with turning on PowerShell Studio 2024

Please make sure to submit support requests from the account associated with your license and preferably in the forum section associated with your product.
by brittneyr
Wed Dec 04, 2024 7:14 am
Forum: Former and Future Customers - Questions
Topic: Problems with turning on PowerShell Studio 2024
Replies: 2
Views: 47

Re: Problems with turning on PowerShell Studio 2024

Can you provide a screenshot of the error message you are receiving?
by brittneyr
Tue Dec 03, 2024 2:11 pm
Forum: PowerShell Studio
Topic: PowerShell 7.x – ProgressBarOverlay does not work (EXE)
Replies: 9
Views: 824

Re: PowerShell 7.x – ProgressBarOverlay does not work (EXE)

I have an update regarding this issue. After some digging, we have discovered that this is related to a Microsoft packaging issue between .NET 8, .NET 9, and PowerShell 7. An assembly that is being referenced was not included in PowerShell 7/.NET 8. This is causing code needed to load the ProgressBa...
by brittneyr
Fri Nov 22, 2024 7:22 am
Forum: PowerShell GUIs
Topic: Kiosk mode
Replies: 1
Views: 256

Re: Kiosk mode

[Topic moved to PowerShell GUIs by moderator]
by brittneyr
Thu Nov 21, 2024 7:16 am
Forum: PowerShell Studio
Topic: Powershell forms Project and Globals.ps1 variable not showing
Replies: 4
Views: 136

Re: Powershell forms Project and Globals.ps1 variable not showing

The error message is indicating that the issue is with $txtPrivilegeGroup.Text, not $employeeRec. Please verify that that is the correct name of the object you are attempting to set the text with and that there is a Text property exists on that object. Though it is not the error being returned, the ...
by brittneyr
Wed Nov 20, 2024 11:38 am
Forum: PowerShell Studio
Topic: Powershell forms Project and Globals.ps1 variable not showing
Replies: 4
Views: 136

Re: Powershell forms Project and Globals.ps1 variable not showing

What do you mean by cannot use it in a form? Can you please elaborate as to what you are doing? Are you getting errors when you attempt to run? If so, can you post the errors here? How are you adding it in the Globals.ps1 file? With adding your $EmployeeRecord to a Globals.ps1 file of a newly create...
by brittneyr
Tue Nov 19, 2024 7:48 am
Forum: PowerShell Studio
Topic: Reading/Writing data to SQL server tables
Replies: 6
Views: 163

Re: Reading/Writing data to SQL server tables

It appears you are packaging with the Windows Application engine. If you just want to show your form, I recommend packaging with the Windows Forms engine.

You may find the following helpful:
https://www.sapien.com/blog/2022/07/01/ ... pt-engine/
by brittneyr
Mon Nov 18, 2024 1:01 pm
Forum: PowerShell Studio
Topic: Reading/Writing data to SQL server tables
Replies: 6
Views: 163

Re: Reading/Writing data to SQL server tables

To populate a DataGridView control with a data from a database, you need to set the data returned as the DataSource. If you right-click on a table in the Database Browser and select 'Generate Query Form', it will give you a good starting point on how to connect your database queries to a DataGridVie...