Hello all,
Is that Possible to display a Windows form through UIPath?
I tried with Balloon tool tips. its worked.
var frm = new Form();
frm.Name = "Hello";
ProgressBar bar = new ProgressBar();
bar.Location = new System.Drawing.Point(50, 20);
bar.Name = "progressBar1";
bar.Size = new System.Drawing.Size(171, 23);
bar.TabIndex = 0;
bar.Style = ProgressBarStyle.Marquee;
bar.Minimum = 0;
bar.Maximum = 100;
frm.Controls.Add(bar);
frm.Show();
I need to implement this code in UIPath. can anyone help me?