Search found 1829 matches

by brittneyr
Fri Jan 17, 2025 3:12 pm
Forum: PowerShell Studio
Topic: feature request disappeared
Replies: 5
Views: 71

Re: feature request disappeared

You can view your open feature requests here:
OpenFeatureRequests.png
OpenFeatureRequests.png (43.3 KiB) Viewed 25 times
by brittneyr
Fri Jan 17, 2025 8:11 am
Forum: PowerShell GUIs
Topic: Resizing a form in code
Replies: 2
Views: 162

Re: Resizing a form in code

Try creating a new Size object and setting it to either the Size or ClientSize property:

Code: Select all

$formLogon.ClientSize = New-Object System.Drawing.Size(1500, 750)
You can also use the Height and Width properties:

Code: Select all

$formLogon.Height = 750
$formLogon.Width = 1500
by brittneyr
Fri Jan 17, 2025 8:06 am
Forum: PowerShell GUIs
Topic: Resizing a form in code
Replies: 2
Views: 162

Re: Resizing a form in code

[Topic has been moved by moderator]
by brittneyr
Thu Jan 16, 2025 2:18 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 164

Re: Issues with PictureBox using image from ImageList after PS Studio update

This issue will be resolved in the next service release. For a workaround in the meantime, manually adding the ImageSize and ColorDepth properties before you set the PictureBox control image in your form should resolve the issue. Example: $form1_Load = { $imagelist1.ImageSize = New-Object System ...
by brittneyr
Thu Jan 16, 2025 12:59 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 164

Re: Issues with PictureBox using image from ImageList after PS Studio update

We have been able to reproduce this issue and are working on a solution. I'll update you when I have more information.
by brittneyr
Wed Jan 15, 2025 10:12 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 164

Re: Issues with PictureBox using image from ImageList after PS Studio update

For your $ImageList, what values are you setting for the ImageSize and ImageDepth properties?
by brittneyr
Wed Jan 15, 2025 2:40 pm
Forum: PowerShell Studio
Topic: feature request disappeared
Replies: 5
Views: 71

Re: feature request disappeared

That is only showing the latest requests. To see all PowerShell Studio requests, on the feature requests page, click on PowerShell Studio:
FeatureRequestProduct.png
FeatureRequestProduct.png (101.45 KiB) Viewed 57 times
by brittneyr
Wed Jan 15, 2025 2:04 pm
Forum: PowerShell Studio
Topic: feature request disappeared
Replies: 5
Views: 71

Re: feature request disappeared

From our records, your request is still listed as under review.
by brittneyr
Wed Jan 15, 2025 11:45 am
Forum: PowerShell HelpWriter
Topic: Unhandled exception starting PowerShell HelpWriter 2024
Replies: 3
Views: 503

Re: Unhandled exception starting PowerShell HelpWriter 2024

Please try service build 3.0.70 and let me know if this is still an issue.