add a item into a textbox?

  • Thread starter Thread starter jack.xu
  • Start date Start date
J

jack.xu

a item has a text property and a value property.Can i add a such item into a
textbox?And the textbox only show item's text.

thanks in advance
 
Hi Jack,

I do not if it is a windowform or a webform, however with the windowform you
can maybe use the tag property.

Cor
 
* "jack.xu said:
a item has a text property and a value property.Can i add a such item into a
textbox?And the textbox only show item's text.

\\\
Me.TextBox1.AppendText(foo.Text)
///
 
* "jack.xu said:
thank you both!but I don't know if i add two or more items it would work?

What would you expect? The text for each item will be appended...
 
Back
Top