|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hello, i'm trying to do a program that can receive at diferent times diferent strings.
The question is that the older strings are visible as the new string apears, somewhat like a chat program. I'm using a textbox with multiline. What i would like to know is if it is possible to do this with a textbox, if not are there any sugestions? |
|
#2
|
|||
|
|||
|
Text box would work. Make sure it's set to MultipleLine = true in the behavior properties...
Then just append the text of the string to the text of the text box: textbox.text = textbox.text & vbNewLine & newString or textbox.text = newString & vbNewLine & testbox.text So yes, a text box would work, might not be visibly appealing, but it will work. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > .Net Development > textbox on vb.net |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|