Alternate of output panel

In Uipath studio we have output panel to display the output using Write Line activity. When I’m running my process using Uipath Robot, what is the way to display the output when my process is closed. Which means that when my process is finished, I should get the result of my process(eg: content in a text file) immediately after the end of process. None of the application should be opened…

Anyone please help me with the solution

1 Like

Use Message Box to display

1 Like

Awesome
We can write the string that we have mentioned in WRITELINE activity In a WRITE CELL or ADD DATAROW activity so that we can store them in a EXCEL file
Once after saving to excel file and the moment process execution is over we can see the same strings that we have mentioned in writeline and the one going to be in output panel here in EXCEL FILE
Or

To a text file like notepad with Write text activity or APPEND LINE activity

Cheers @rifnanahas

1 Like

I have a text file and i need to display the whole content of that file as output when my process ends.

yes,
just pass the output of Read text file to message box
it wil print the entire content of the text file

2 Likes

I am not able to use excel…Like output panel in uipath studio…Is there any other way to display the output.

1 Like

So as you want to write that output text to a text file and also if we don’t want to open any application manually to see that file
First we can write the text we want to a txt file with write text activity
Then atlast to the sequence of activities add a START PROCESS activity where pass the filepath of txt file we have created and added text, to the property FileName

So that it will open the notepad immediately once the process is over and you could be able to see the text that we have written to the text file

Cheers @rifnanahas

1 Like

Thank you for your help

1 Like

cheers @rifnanahas

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.