Custom Activities?

Good Morning,

I have a doubt, is it possible to call UiPath’s activity inside my custom activity created with c#?

Thank you very much
Regards

Mostly not possible.

1 Like

I would like to know
what custom activity you created? and which UiPath activity you want to utilize inside your custom activity? and why?

1 Like

@pathrudu
I have not created an activity yet, but for example:
If i create activity where the result is FirstName and LastName in C# and after i would like to invoke an existing uipath activity e.g.Message Box. in C# inside my custom activity.

Is it possible ?

Thank your time

Custom Activity you will be writing in VS and you will be publishing nuget package from nuget explorer and then you will configure @managepackages at which stage you want to include this message box?

  1. you can use message box next to your custom activity.
  2. you can write the C# code to display any value in message box by including in your Custom Activity code System.Windows.Forms.MessageBox.Show(message,Title) you can add custom buttons too. (please not that when ever you use this activity message box will be displayed).

Regards,
Pathrudu

1 Like

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