console writeline

  • Thread starter Thread starter RobcPettit
  • Start date Start date
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
 
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
|
 
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
 
Thankyou for your replys. Im always amazed and gratefull at how quick
the replys come. This worked perfect.
Regards Robert
 
Back
Top