I have an exe file that runs in the cmd prompt. I need to create its GUI for which i am using VB. I need to also pass user-input arguments to its command line.So, I tried reading the user-inputs and wrote it to the path command line in Shell command.
Now, this didnt work...so I tried to test whether my program is reading the user-inout values correctly...a part of my code looks like this:
Dim dblGoods As Double
dblGoods = Convert.ToDouble(txtfixedgoods.Text)
TextBox1.Text = dblGoods.ToString
Ideally, the TextBox1 should display what the user enters in the txtfixedgoods textbox...but it doesnt do it...whats the problem here
please reply asap...thanks in advance.

cmd exe file using VB
Zachovich
Hi,
Could you please give us some more information about your app So that we can help you out...
Thank you,
Bhanu.
jlenthe
We need some more information, are you trying to run an external command prompt tool from inside a vb application, and pass command line args to it.
If so you might want to do some reading on the process class. from here you can pass args to the command line tool and also redirect the command line so that you can parse it inside your vb application.