Search found 1660 matches

by brittneyr
Mon Mar 04, 2024 9:36 am
Forum: PowerShell Studio
Topic: Expand All Aliases to Cmdlets keyboard shortcut not working
Replies: 7
Views: 1408

Re: Expand All Aliases to Cmdlets keyboard shortcut not working

From my initial tests, I've not been able to reproduce this behavior.

Is the editor in focus when you attempt the shortcut?
Are the aliases that are not updating recognized by the editor?
by brittneyr
Mon Mar 04, 2024 9:12 am
Forum: PowerShell Studio
Topic: WebView2 & PowerShell Studio Problematic
Replies: 5
Views: 1135

Re: WebView2 & PowerShell Studio Problematic

Thank you for reporting. We will look into this and get back to you.

Can you please upload one of your projects with this behavior here:
https://www.sapien.com/support/upload
by brittneyr
Fri Mar 01, 2024 3:30 pm
Forum: PowerShell Studio
Topic: Background jobs don't work from packaged code and can't get workaround to work
Replies: 1
Views: 812

Re: Background jobs don't work from packaged code and can't get workaround to work

The issue lies with the Start-Job command being hosted in other applications, such as packaged scripts from our SAPIEN Script Packager. As stated in the forum post mentioned, Start-Job depends on the PowerShell executable to be available under $PSHOME to start an out-of-process background job, but w...
by brittneyr
Wed Feb 28, 2024 10:17 am
Forum: PowerShell GUIs
Topic: Close form on Escape Key
Replies: 3
Views: 2011

Re: Close form on Escape Key

Did you add the event handler to your form:
SPS_EventHandlerKeyDown.png
SPS_EventHandlerKeyDown.png (22.49 KiB) Viewed 1992 times
You may find the following helpful:
https://www.sapien.com/blog/2021/11/23/ ... ll-studio/
by brittneyr
Wed Feb 28, 2024 8:30 am
Forum: PowerShell GUIs
Topic: Close form on Escape Key
Replies: 3
Views: 2011

Re: Close form on Escape Key

$form1_KeyDown=[System.Windows.Forms.KeyEventHandler]{ #Event Argument: $_ = [System.Windows.Forms.KeyEventArgs] #TODO: Place custom script here If ($_.KeyCode -eq [System.Windows.Forms.Keys]::Escape) { $form1.Close() } } This is checking for the escape key using Keys enum class. You can find more ...
by brittneyr
Fri Feb 23, 2024 8:55 am
Forum: Customer Service
Topic: Unable to load projects "
Replies: 14
Views: 3542

Re: Unable to load projects "

The file you sent was a project state file (psprojs), not the actual project file (psproj). The file you should be opening for your projects is the psproj file to open your projects. Also, you did not send all files associated with one of your projects. Please upload ALL files associated with one of...
by brittneyr
Fri Feb 23, 2024 8:34 am
Forum: Customer Service
Topic: Unable to load projects "
Replies: 14
Views: 3542

Re: Unable to load projects "

Uninstalling and deactivating will not fix your project files. You can open the license dialog from the top-right corner of the application.

Please upload one of your projects along with all its files to help us determine the issue:
https://www.sapien.com/support/upload
by brittneyr
Fri Feb 23, 2024 8:15 am
Forum: Customer Service
Topic: Unable to load projects "
Replies: 14
Views: 3542

Re: Unable to load projects "

Please upload one of your projects along with all its files to help us determine the issue:
https://www.sapien.com/support/upload
by brittneyr
Fri Feb 23, 2024 7:56 am
Forum: Customer Service
Topic: Unable to load projects "
Replies: 14
Views: 3542

Re: Unable to load projects "

Based on the image, your project cannot find/load the files from those paths. Are those files in those locations? If not, you can try manually edit the psproj file in a different editor or remove all the files from the project and re-add them.
by brittneyr
Fri Feb 23, 2024 7:36 am
Forum: Customer Service
Topic: Unable to load projects "
Replies: 14
Views: 3542

Re: Unable to load projects "

Please verify that the application is not still running a script. This can be done by hitting the Stop button on the ribbon.

If this is not the case, please provide a screenshot of the full application.