

Thanks
The property 'ToolTip' cannot be found on this object. Verify that the property exists and can be set. At line:386 char:1 + $SearchRightsButton.ToolTip = "List Permissions set on OU on screen" + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (:) [], RuntimeException + FullyQualifiedErrorId : PropertyAssignmentExceptionThe tooltip is called tooltip1, and it does actually display but obviously getting errors in the powershell window is not a good result.
$SearchRightsButton.TabIndex = 16 $SearchRightsButton.ToolTip = "Test message" $SearchRightsButton.UseVisualStyleBackColor = $FalseIf this is left there it generates the error I posted earlier. Comment this out or delete it and the error goes away, but as long as the additional line at the bottom of the page you sent the link to and you get a tooltip that appears with no errors.
$toolTip1.SetToolTip($button1, "This is a button")David