New Here

Ask questions about creating Graphical User Interfaces (GUI) in PowerShell and using WinForms controls.
Forum rules
Do not post any licensing information in this forum.

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 8 years and 10 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.
Locked
User avatar
xsymbianx
Posts: 4
Last visit: Wed Mar 04, 2020 8:34 pm

New Here

Post by xsymbianx »

Hey guys. I am new here and getting myself familiar.

I currently have a script I use a lot in our environment. Right now I am doing a write output to html for the results.

which shows up as:

Results of the Attribute Search by employeeID are here

C:\Users\user\AppData\Local\Temp\Results_AttributeSearch_2015_05_07 12_11 PM.html

I am NEW creating forms, but have some powershell experience.

Am I going to have to rewrite the output of my script, or can I somehow pump the html into a textbox?
User avatar
SAPIEN Support Forums
Posts: 945
Last visit: Thu Oct 22, 2015 1:10 pm

New Here

Post by SAPIEN Support Forums »

This is an automated post. A real person will respond soon.

Thank you for posting, xsymbianx.

Here are some hints to help you get an accurate and complete answer to your question.

Ask in the best forum: If you asked in the wrong forum, just copy your question to the right forum.

Anticipate follow-up questions!

Did you remember to include the following?
  • 1. Product, version and build
    2. 32 or 64 bit product
    3. Operating system, e.g. Windows 7 64 bit.
    4. Attach a screenshot, if applicable
    5. Attach logs, crash reports, etc., in a ZIP file
If not, please take a moment to edit your original post or reply to this one.

*** Make sure you do not post any licensing information ***
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Re: New Here

Post by jvierra »

Sorry but it is very hard to understand what you are asking.

Pasting the name of your file into the browser does not paste the file. You have to upload it.
User avatar
Lembasts
Posts: 405
Last visit: Wed Mar 20, 2024 1:40 pm
Has voted: 1 time
Been upvoted: 1 time

Re: New Here

Post by Lembasts »

Hi,
Create a webbrowser control on your form. Pull the html data/file into a variable and then display it in the control like this:
PowerShell Code
Double-click the code block to select all.
$webbrowser.DocumentText = $html
where $webbrowser is the name you've assigned to the control and $html is your pure html.

Cheers
David
This topic is 8 years and 10 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.
Locked