Search found 1809 matches
- Wed Dec 04, 2024 9:46 am
- Forum: Former and Future Customers - Questions
- Topic: Problems with turning on PowerShell Studio 2024
- Replies: 2
- Views: 50
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.
- Wed Dec 04, 2024 7:14 am
- Forum: Former and Future Customers - Questions
- Topic: Problems with turning on PowerShell Studio 2024
- Replies: 2
- Views: 50
Re: Problems with turning on PowerShell Studio 2024
Can you provide a screenshot of the error message you are receiving?
- 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...
- Mon Dec 02, 2024 7:49 am
- Forum: Customer Service
- Topic: Black Friday Maintenance Renewal Sale??
- Replies: 2
- Views: 90
- Sat Nov 30, 2024 11:29 am
- Forum: PowerShell GUIs
- Topic: Multi Forms Passing data bidirectional
- Replies: 2
- Views: 334
Re: Multi Forms Passing data bidirectional
You may find the following helpful:
https://info.sapien.com/index.php/guis/ ... jects-work
https://info.sapien.com/index.php/guis/ ... jects-work
- Fri Nov 22, 2024 7:22 am
- Forum: PowerShell GUIs
- Topic: Kiosk mode
- Replies: 1
- Views: 257
Re: Kiosk mode
[Topic moved to PowerShell GUIs by moderator]
- Thu Nov 21, 2024 7:16 am
- Forum: PowerShell Studio
- Topic: Powershell forms Project and Globals.ps1 variable not showing
- Replies: 4
- Views: 137
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 ...
- Wed Nov 20, 2024 11:38 am
- Forum: PowerShell Studio
- Topic: Powershell forms Project and Globals.ps1 variable not showing
- Replies: 4
- Views: 137
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...
- 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/
You may find the following helpful:
https://www.sapien.com/blog/2022/07/01/ ... pt-engine/
- 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...