<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Noé - you need to do some… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93078#M42728</link>
    <description>Noé - you need to do some research on .Net development, there are thousands of examples out there. But remember BP is not an IDE, and you'll soon get frustrated trying to develop custom code in BP. It's far easier to&amp;nbsp;get things working&amp;nbsp;in something like Visual Studio and then paste into BP.</description>
    <pubDate>Mon, 14 May 2018 21:46:00 GMT</pubDate>
    <dc:creator>John__Carter</dc:creator>
    <dc:date>2018-05-14T21:46:00Z</dc:date>
    <item>
      <title>Create TextBox Pop up in Code Section using VB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93077#M42727</link>
      <description>Hi,&amp;nbsp;


i recently create a simple code in VB for launch a MessageBox (pop up) just by adding :&amp;nbsp;

Dim Buttons As MessageBoxButtons = MessageBoxButtons.Ok
MessageBox.Show(input,caption,Buttons)

&amp;nbsp;

I know that i have to declare method, global variable... in the&amp;nbsp;GLOBAL CODE SECTION
I want to create a TEXTBOX, (a pop up with a text field within).

&amp;nbsp;

I truly need help !!!

Best regards,&amp;nbsp;

&amp;nbsp;

NoÃ© P
&amp;nbsp;</description>
      <pubDate>Mon, 14 May 2018 14:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93077#M42727</guid>
      <dc:creator>NoePichot</dc:creator>
      <dc:date>2018-05-14T14:39:00Z</dc:date>
    </item>
    <item>
      <title>Noé - you need to do some…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93078#M42728</link>
      <description>Noé - you need to do some research on .Net development, there are thousands of examples out there. But remember BP is not an IDE, and you'll soon get frustrated trying to develop custom code in BP. It's far easier to&amp;nbsp;get things working&amp;nbsp;in something like Visual Studio and then paste into BP.</description>
      <pubDate>Mon, 14 May 2018 21:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93078#M42728</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2018-05-14T21:46:00Z</dc:date>
    </item>
    <item>
      <title>Hi,
Add System.Windows.Forms…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93079#M42729</link>
      <description>Hi,
Add&amp;nbsp;System.Windows.Forms.dll referance
and take one code stage where Message and Title should be&amp;nbsp;input text and Result should be Output text
and use below code:
&amp;nbsp;
&amp;nbsp;
Result=""""
Dim Form as new System.Windows.Forms.Form
Form.Text = Title
Form.Size = New System.Drawing.Size(500,150) &amp;nbsp;
Form.FormBorderStyle =System.Windows.Forms.FormBorderStyle.FixedDialog
Form.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Dim ConfigLabel as new System.Windows.Forms.Label
ConfigLabel.Text = Message
ConfigLabel.Location = New System.Drawing.Point(50,20)
ConfigLabel.Width=350
Form.Controls.Add(ConfigLabel)
Dim TextInput as new System.Windows.Forms.TextBox
TextInput.Text = """"
TextInput.Location = New System.Drawing.Point(50,50)
TextInput.Width=400
Form.Controls.Add(TextInput)
dim OKButton as new System.Windows.Forms.Button
OKButton.Location = New System.Drawing.Point(350,70)
OKButton.Width = 100
OKButton.Text = ""OK""
OKButton.DialogResult = System.Windows.Forms.DialogResult.OK
Form.AcceptButton = OKButton
Form.Controls.Add(OKButton)
Dim ButtonResult As System.Windows.Forms.DialogResult
ButtonResult=Form.ShowDialog()
If ButtonResult=1 Then
&amp;nbsp;&amp;nbsp; &amp;nbsp;Result=TextInput.Text
else
&amp;nbsp;&amp;nbsp; &amp;nbsp;Result=""""
end if</description>
      <pubDate>Tue, 15 May 2018 11:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-TextBox-Pop-up-in-Code-Section-using-VB/m-p/93079#M42729</guid>
      <dc:creator>Hitesh__Mhatre</dc:creator>
      <dc:date>2018-05-15T11:47:00Z</dc:date>
    </item>
  </channel>
</rss>

