console writeline

R

RobcPettit

Hi, im using
if
(p.skipToEndOfNoCase("document.getElementById('hand0Evaluation').innerHTML
= '") &&
p.extractTo("'", ref strQuote))
Console.WriteLine("Dealer = {0}", strQuote);
to parse details into strQuote, this works fine and writes to command
screen perfect. What Id like to do is write strQuote into a textbox.
Ive tried textbox1.text = strQuote, textbox1.text = strQuote.tostring
and this textbox1.text = strQuote.
Regards Robert
 
W

William Stacey [MVP]

this.textbox1.Text = string.Format("Dealer = {0}", strQuote);

--
William Stacey [MVP]

| Hi, im using
| if
| (p.skipToEndOfNoCase("document.getElementById('hand0Evaluation').innerHTML
| = '") &&
| p.extractTo("'", ref strQuote))
| Console.WriteLine("Dealer = {0}", strQuote);
| to parse details into strQuote, this works fine and writes to command
| screen perfect. What Id like to do is write strQuote into a textbox.
| Ive tried textbox1.text = strQuote, textbox1.text = strQuote.tostring
| and this textbox1.text = strQuote.
| Regards Robert
|
 
G

Guest

textbox1.Text property (T is capital later)
Hi, im using
if
(p.skipToEndOfNoCase("document.getElementById('hand0Evaluation').innerHTML
= '") &&
p.extractTo("'", ref strQuote))
Console.WriteLine("Dealer = {0}", strQuote);
to parse details into strQuote, this works fine and writes to command
screen perfect. What Id like to do is write strQuote into a textbox.
Ive tried textbox1.text = strQuote, textbox1.text = strQuote.tostring
and this textbox1.text = strQuote.
Regards Robert

--
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
R

RobcPettit

Thankyou for your replys. Im always amazed and gratefull at how quick
the replys come. This worked perfect.
Regards Robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top