• Welcome to Valhalla Legends Archive.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Severance

#1
Visual Basic Programming / Re: IRC Client help
August 16, 2007, 05:23 PM
lol okay.
#2
Visual Basic Programming / Re: IRC Client help
August 16, 2007, 01:06 PM
Sounds good, Ill try to keep all that in mind. Thanks.
#3
Visual Basic Programming / Re: IRC Client help
August 16, 2007, 11:25 AM
Is that an easier language?
#4
Visual Basic Programming / Re: IRC Client help
August 16, 2007, 11:09 AM
Well actually Im new to programming in general. I usually work with web design and fairly understand the language of php. But people have told me that you should start with VB if you want to learn application programming.
#5
Visual Basic Programming / Re: IRC Client help
August 15, 2007, 10:26 PM
Thanks, I was looking for something like that.
#6
Visual Basic Programming / Re: IRC Client help
August 15, 2007, 09:00 PM
Oh nvm, misunderstood for a sec. I got it now though. Thanks for the help.
#7
Visual Basic Programming / Re: IRC Client help
August 15, 2007, 08:52 PM
Lol, I know that, but do you know how to put incomming chat messages into the text box?
#8
Visual Basic Programming / Re: IRC Client help
August 15, 2007, 08:24 PM
Wow, didnt realize that would display messages too, thanks. But I have one more problem. I want to have two forms for this client. The first form is where the winsock is, and it has all the connection info and stuff. The seccond form is where the chatting goes down, with the userlist and such. My problem is, I do not know how to just display incomming messages in the seccond form. One again I would appreciate if anybody could assist me in this matter, thanks.
#9
Visual Basic Programming / IRC Client help
August 15, 2007, 07:49 PM
Well, ive decided that I would like to have visual basic as a language that I could fairly understand. So ive decided to try to program my own IRC client to get the hang of using the winsock control. So far, I have got the program able to connect to a given server on a given port with a given nickname, and it is able to join channels and send messages throughout the channel. The only thing that I cant figure out how to do now is tell the textbox to display incomming chat messages,  and display the userlist in another text box. I have come up with the code :
winsock.SendData "PRIVMSG" & " " & txtChannel & vbCrLf for the sending of the messages. But would receiving the messages use the same PRIVMSG command, only using GetData instead of SendData work? I hope I worded this right, but any help would be appreciated a lot.