Question adding on to the label?

audio_uphoria

Active member
Joined
Jan 28, 2009
Messages
31
Programming Experience
Beginner
Hi, I'm trying to make a chat bot just to get used to using VB and I was wondering how would you code it to show the entire conversation in a label? Ex.

Pc: Hello I am chat bot
user: Hello
Pc: What would you like to talk about?
user: programming.

and allow it to keep adding on to the label and eventually where you can scroll though it just like you see in instant messangers. Thanks.
 
You can't scroll Labels. Use a TextBox and set the ReadOnly property to True. It has an AppendText method to do exactly as the name suggests.
 
You, my friend, are awesome. I feel like I get annoying with all my questions but you have helped out with every one of them. Thanks again.
 
You, my friend, are awesome. I feel like I get annoying with all my questions but you have helped out with every one of them. Thanks again.
Nothing annoying about lots of questions. As long as your posts include a clear and full description of what you want to achieve, what you're currently doing and what actually happens then we can be friends. :) Make sure you always read the relevant MSDN documentation first too. That's the best way to learn. Even if it doesn't always give you what you need, you will almost always learn something, if only how to better make use of the documentation.
 
Back
Top