How to use InputBox with StreamWriter [Resolved]
HI All!
I’ve been trying this for a while now and am still unable to make this work.
In my menu I am making a call to an InputBox and the result of the InputBox is supposed to be used to Create or Replace a file in my App. Folder.
I’m trying to do this with the StreamWriter but I can’t seem to be able to get the coding together.
VB Code:
Dim Prompt, rout As String
Prompt = "Please input your Banks Routing Number"
rout = InputBox(Prompt, "Routing Number")
‘?????????
Can someone Pease give me an example on how to finish this line.??
The only thing I know how to do is create a File with StreamWriter but I don’t know how to do it in conjunction with an InputBox.
Thanks!!