I need to know whether is that possible to give the hyperlink in the message box to give as output link which displays as outup link
Welcome to the community
You have 2 options
- Use a input fialog box and display the url and give yes or no buttons…if the user selects yes then use use browser/application activity and pass the url to it so that the url gets opened
- Create a form in which you can embed links and can be displayed to the user
Hopw this helps
Cheers
You can display a message with a hyperlink using a custom dialog box by this way-
Install the UiPath.Forms.Activities package in your UiPath project if you haven’t already. Use the “Invoke Code” activity to open a custom dialog box. Inside the activity, you can write custom code using a programming language such as C# or VB.NET to create a dialog box with a hyperlink.
Here’s an example of C# code that creates a custom dialog box with a hyperlink:
string message = “Click <a href="http://example.com">here to visit the output link.”;
MessageBox.Show(message, “Output Link”, MessageBoxButtons.OK, MessageBoxIcon.Information);
The “message” variable contains the text with the hyperlink, and the MessageBox.Show() method displays the custom dialog box.
You can adjust the code to suit your specific requirements, including the message content, title, and dialog box buttons.
Thanks!!