I need help with the code of chat for faceBook in VB

Asked By 0 points N/A Posted on -
qa-featured

Hello.  I have a website with a chat function that I would like to integrate with Facebook.  Can someone teach me the code of chat for Facebook in VB?  I am on Windows Vista and Microsoft Visual Basic 6.  Thanks in advance.

SHARE
Answered By 0 points N/A #177401

I need help with the code of chat for faceBook in VB

qa-featured

 

Server Side of VB6 Program

Now lets create the server side of our program. Normally you would create a new Visual Basic program just for the dedicated server, but to make things easier we are just going to create a second form. So add a Form2 to your project. And add these controls to it.

Type: Winsock
Name: sockMain

Type: TextBox
Name: txtPort
Text: 12345

Type: TextBox
Name: txtStatus
MultiLine: True
ScrollBars: 3 – Both

Type: TextBox
Name: txtSend

Type: CommandButton
Name: cmdListen
Text: &Listen

Type: CommandButton
Name: cmdSend
Text: &Send

Related Questions