-
A few questions
1.
Code:
WebBrowser1.Document.GetElementById("fieldname").SetAttribute("value", (TextBox4.Text))
How can I add something to the end of this? So it is like
"Textfrombox WhatIwanttoadd"
2. If I have a .txt file, how can I make it load a line from that file? Then repeat this using a different line from the .txt file?
Thanks!
Schuyler
-
Re: A few questions
I don't know the first question, but the second one use File.ReadAllLines, to read each line of the file into an array and just load it from there.
-
Re: A few questions
WebBrowser1.Document.GetElementById("fieldname").SetAttribute("value", (TextBox4.Text & "whatyouwanttoadd"))