Search found 8485 matches

by Alexander Riedel
Mon Apr 15, 2024 3:28 pm
Forum: PowerShell GUIs
Topic: Problems migrating from 5.1 to 7.4.1
Replies: 6
Views: 125

Re: Problems migrating from 5.1 to 7.4.1

I doubt it has anything todo with the list box.
You are using System.Windows.Forms.DataVisualization.Charting.Chart which to my knowledge is not supported in anything past .NET Framework 4.8.1
I would surmise you are getting some error output on 7.4?
by Alexander Riedel
Wed Apr 10, 2024 10:00 pm
Forum: PowerShell GUIs
Topic: Attempting to package GUI form into exe embed mainfest failure
Replies: 1
Views: 829

Re: Attempting to package GUI form into exe embed mainfest failure

The manifest is an XML files. Most commonly writing that to the exe fails for two reasons: 1. Your AV software interferes. Even if it finds nothing it might temporarily block the file from being updated. This can be a timing thing or something specific to this project 2. Elements in your version res...
by Alexander Riedel
Tue Apr 09, 2024 4:07 pm
Forum: PowerShell Studio
Topic: Problems in Output windows
Replies: 10
Views: 792

Re: Problems in Output windows

Can you please start PowerShell Studio elevated once, clicking the WMI browser button then.
Exit and start normally. Does that make any difference?
by Alexander Riedel
Tue Apr 09, 2024 12:51 pm
Forum: Former and Future Customers - Questions
Topic: Can't add buttons after update
Replies: 6
Views: 1119

Re: Can't add buttons after update

Your licensing department can add your SAPIEN ID as a user to the license. https://info.sapien.com/index.php/quickguides/managing-multiple-licenses-with-a-single-activation-key This will help you get better and faster support. If you have questions specific to your license and how to set this up, pl...
by Alexander Riedel
Tue Apr 09, 2024 10:06 am
Forum: Former and Future Customers - Questions
Topic: Can't add buttons after update
Replies: 6
Views: 1119

Re: Can't add buttons after update

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 Alexander Riedel
Mon Apr 08, 2024 3:43 pm
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 1144

Re: PowerShell Studio installlation error

This is the URL our server certificate uses for revocation checks:
http://crl.r2m01.amazontrust.com/r2m01.crl
There is no guarantee that this is a static URL.
by Alexander Riedel
Mon Apr 08, 2024 12:15 pm
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 1144

Re: PowerShell Studio installlation error

It is through Amazon AWS, that is all I know at the moment. If I have more information I will let you know.
If you need an offline PowerShell Studio installer in the meantime, I can DM you a link.
by Alexander Riedel
Mon Apr 08, 2024 11:14 am
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 1144

Re: PowerShell Studio installlation error

This is a system message about verifying digital signatures. Most likely you system is trying to verify our website's certificate for https. That requires contacting a revocation server that lists bogus digital certificates that have been revokes. A double check so to speak. That URL is different fo...
by Alexander Riedel
Mon Apr 01, 2024 11:16 pm
Forum: PowerShell GUIs
Topic: CheckedListBox prevent user from unchecking all boxes and only allow single checkbox to ever be selected
Replies: 1
Views: 1458

Re: CheckedListBox prevent user from unchecking all boxes and only allow single checkbox to ever be selected

Simplest way, at the end of your event handler you iterate through all elements in the list. Add 1 to counter if an item is checked. Once you iterated through all items and your counter is still zero, you know nothing is checked. At that point you can: A) Simply re-check the item that was clicked on...
by Alexander Riedel
Thu Mar 28, 2024 9:29 am
Forum: PowerShell
Topic: Supress output from a build file (.exe)
Replies: 3
Views: 1769

Re: Supress output from a build file (.exe)

That is a progress message. You cannot pipe that to null.
Try this:
$ProgressPreference = 'SilentlyContinue'