Page 1 of 1

CodenStuff Chat Updater

Posted: Sat Mar 13, 2010 4:39 pm
by GoodGuy17
Hello,
Does anyone know how to do the following:
*One two textboxes, one button
*Enter your text in one textbox
*Other textbox has chat text
*Button updates(sends)
So basically you see the chat thing at the bottom of the screen on the main page? I am trying to make my program send text to it and receive messages in the receiving textbox. If you need me to clarify, reply. Please help!!
~GoodGuy17 :D

Re: CodenStuff Chat Updater

Posted: Mon Mar 22, 2010 10:24 am
by upperdrag
erm for me i use a listbox
then ill go like

ListBox1.Items.Add("You Said:")
ListBox1.Items.Add(RichTextBox1.Text)
ListBox1.Items.Add(" ")
RichTextBox1.Clear()

then the listbox1.selection mode = None

thats my method :D