Re: How do you open a application in a TEXTBOX or something SIMILAR
Like if you want to read a textfile and display that contents into a textbox? If so take a look on msdn for "Stream Reader" and "Stream Writer". If not, could you be a bit more specific. What is it that you're trying to accomplish?
Re: How do you open a application in a TEXTBOX or something SIMILAR
i am just wanting to press a button and you can search for an application and then whne you press ok it fires up the program within the form, but in a textbox in the form is this possible
Re: How do you open a application in a TEXTBOX or something SIMILAR
You are making it sound as though you want the application to run within the confines of a text box which of course is not possible nor would there be any reason to do so even if it were possible.
Yes you can write code behind a button that pulls up a browse for file dialog and then uses Process.Start to launch the application selected or the application that is set to open that type of file and yes you can have that filename appear in the text box but no you can not run an application in a tetxbox.