Try catch Form

This forum can be browsed by the general public. Posting is limited to current SAPIEN license holders with active maintenance and does not offer a response time guarantee.
Forum rules
DO NOT POST LICENSE NUMBERS, ACTIVATION KEYS OR ANY OTHER LICENSING INFORMATION IN THIS FORUM.
Only the original author and our tech personnel can reply to a topic that is created in this forum. If you find a topic that relates to an issue you are having, please create a new topic and reference the other in your post.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 11 years and 7 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
User avatar
balkanweb
Posts: 16
Last visit: Mon May 09, 2016 12:44 pm

Try catch Form

Post by balkanweb »

I like to terminate script if Connection cannot be performed.

try {
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri Http://server/powerShell/ -Authentication Kerberos -Credential (Get-Credential) -ea 'Stop' }

Catch {
Write-Host "Failure when connecting to remote server."
exit
}

when this runs i get an Unhandled Exception and Forms continues to load.

How can i terminate script if $session fails ?
User avatar
davidc
Posts: 5913
Last visit: Mon Jul 08, 2019 8:55 am
Been upvoted: 2 times

Try catch Form

Post by davidc »

It is not recommended to use exit keyword in a form. Use the form's Close method: $form1.Close()return #If you are in a function / event See the Spotlight on the Form Control blog article for more details on the Form control. David
David
SAPIEN Technologies, Inc.
User avatar
balkanweb
Posts: 16
Last visit: Mon May 09, 2016 12:44 pm

Try catch Form

Post by balkanweb »

I did try the form.close() but it didn't work (script would continue to run lines after catch{}.

Adding the Return fixed it :)
User avatar
davidc
Posts: 5913
Last visit: Mon Jul 08, 2019 8:55 am
Been upvoted: 2 times

Try catch Form

Post by davidc »

The Close method doesn't stop the script. It only signals the form to close (once it can process the message). David
David
SAPIEN Technologies, Inc.
User avatar
davidc
Posts: 5913
Last visit: Mon Jul 08, 2019 8:55 am
Been upvoted: 2 times

Try catch Form

Post by davidc »

The following blog should hopefully help you understand what is happening with the form controls and events: http://www.sapien.com/blog/2011/07/05/p ... on-clicks/ David
David
SAPIEN Technologies, Inc.
This topic is 11 years and 7 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.