Search found 1829 matches
- 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:
- 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:
You can also use the Height and Width properties:
Code: Select all
$formLogon.ClientSize = New-Object System.Drawing.Size(1500, 750)
Code: Select all
$formLogon.Height = 750
$formLogon.Width = 1500
- 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]
- 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 ...
- 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.
- 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?
- Wed Jan 15, 2025 3:22 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 are looking into this and will get back to you soon.
- 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:
- 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.
- 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.