..::ysapak.com Study help forum::..Study Online, Notes, Tips, Tricks, Helping Material, Past papers, Solved, Unsolved Model Papers, Test Papers, Genernal Knowledge Information, Free Educational CoursesWeb Designing How Do You Make A Vb Chat Room? How To Make A Voice Chat Room??? How To Make A
Pages: [1]   Go Down
Send this topic | Print
Author
[EN] [PL] [ES] [PT] [IT] [DE] [FR] [NL] [TR] [SR] [AR] [RU]
Topic: How Do You Make A Vb Chat Room? How To Make A Voice Chat Room??? How To Make A  (Read 2065 times)
0 Members and 11 Guests are viewing this topic.
admin
Administrator
Hero Member
*****

Ranking: 200
Offline Offline

Posts: 16074


Looking for some members that can help other students in Studies


« on: February 05, 2011, 07:54:49 PM »

 How Do You Make A Vb Chat Room?
How To Make A Voice Chat Room???
How To Make A Multiple Connection Chat Room?
Chat Room For LAN
VB Chat Room?
Chat Room
Chat Room Q Again
How To Get Into An Irc Chat Room With A Name ?
VB Chat Room
Chat Room
Chat Room
Y! Chat Room Text
Chat Room Problem
Source For A Chat Room
Connecting To A Chat Room!
Chat Room With Voice How ?
Gettin' In The Chat Room..
Chat Room Client
Chat Room Questions...
Do You Think Vbworld Should Have A Chat Room?
How Do I Create A Chat Room That Can....
Multiple Room Chat
Web Based Chat Room
Creating A Chat Room!!!!!
Chat Room Coding ?
Chat Room .... Text Box
Online Game Chat Room
Chat Room Programs That Beep
In My Chat Room Made In Vb I Need Help On Kicking
Send Text To A Chat Room
Odd Problem Connecting To Chat Room In App.
Very Simple Multi Room Chat
Chat Server/client With More Than One Room
Building A Room Hit Counter For A Chat Program
User Enter/login For Chat Room
Multi Client Chat Room With Server In Vb?
VB-World ---> Needs Chat Room! Sign Petition Here!!!
In My Chat Room When People Type And Send It Doesent Go Down A Line
How Do I Make A Chat
How To Make An Msn Chat Bot?
How To Make A Chat?
How Do I Make A Chat
IS THAT We Can Make Chat App With Vb6
Make A Chat Program In Vb6.0?
Make A Chat Program
Make Voice Chat By LAN
How Do I Make A Chat Program?
How Do I Make My App Win Blink Like A Msn IM Chat?
Make A Voice Chat
How Do You Make A Vb Chat Room?
How do you make a vb chat room?
How To Make A Voice Chat Room???
Hi all..

I want to make a Voice Chat room.. or an APP for that... I want it a room so more than 5 users can enter and chat together..

I hope there is a FREE one..

I don't want to buy a room from RoomTalk.net or any other companies.. what I mean is to make a Voice & Text Chat Room..

Thanks for your help in advance.

Regards..
How To Make A Multiple Connection Chat Room?
I'm designing a chat room with visual basic 6 enterprise.. and i'm usin da winsock control.. but how can i let more than 2 people talk.. kinda like an aim/icq chatroom.

any help is welcome
-da404LewZer
Chat Room For LAN
Can anybody help me?

I have made a program for use on my LAN. It has a chat room, File sender etc. but to use it, one person has to be the host and the others must know their username to connect. Is there a way users can connect to a "virtual" computer using winsock. I have seen this done with a program called SimpleChat (Made in VB6) and it works quite well.
VB Chat Room?
Hello, I was wondering if anyone knew of a place where I could find an online chat room, whether it be IRC or webchat, to ask questions about VB in real time?

Greetings
Chat Room
Ok i am writing a game and i want people tobe able to play it over the internet. I have a website i can host it on, but i havent the faintest idea how to do this. I figured i should start with a chat room where u can log in and then talk. Does any1 have any examples where they have done anythin similar of any advice as to how this can be done? Thanks
Chat Room Q Again
Hey guys, when someone wants to long on my chat room they need to find the IP out. I'm wondering if it could be done so when they push a comamnd button it tries a coupl differnet IPS and which one connects ends the trying to connect process? Is that feasable? Thanks
How To Get Into An Irc Chat Room With A Name ?
i am trying to make an irc bot.

to connect to a server i use this command::

Private Sub Form_Load()
Winsock1.Close
Winsock1.Connect "gunz.mine.nu", "6667"
End Sub

but now i need it to join a room with a name

Winsock1.SendData "JOIN " & "##X"
Winsock1.SendData "NICK " & "sypher03"

is that correct? where does it go? does it go in form_load() bcoz i done it there and i get an error

can any1 help?
VB Chat Room
Does anyone know of any good VB Chat rooms with knowledgeable people in them. I would think that a chat room would be a great source of help. If anyone knows of anothing like that, please post them. Thank you.
Chat Room
I would like to create a chat room, so far I have seen this kind of applications using Java applets. My question is how I can implement a chat room using VB? Could anyone please give an idea how to create it using a database? Or if there are any other approach to do it.
All sugestions are welcome.
Thank's in advance.
Chat Room
I would like to create a chat room, so far I have seen this kind of applications using Java applets. My question is how I can implement a chat room using VB? Could anyone please give an idea how to create it using a database? Or if there are any other approach to do it.
All sugestions are welcome.
Thank's in advance.
Y! Chat Room Text
Yahoo changed the code on sending chat to the rooms, if anyone knows the new code on how to send chat into yahoo chat rooms using vb, i'd appreciate the help,

thanks
Chat Room Problem
I am wanting to be able to have more then 1 on 1 chats and fix this problem where this guy gets connection time out wich i dont know why.


Server Side (It only alows you to have 1 on 1 chats but how can i set it up where you can have more then 1 person)


Code:
Option Explicit

Private Sub cmdSend_Click()
Winsock.SendData txtChat.Text
DoEvents
txtMain.Text = txtMain.Text & vbCrLf & txtChat.Text
txtChat.Text = ""
End Sub

Private Sub Form_Load()
Winsock.LocalPort = #
Winsock.Listen
End Sub

Private Sub Winsock_ConnectionRequest(ByVal RequestID As Long)
Winsock.Close
Winsock.Accept RequestID
End Sub

Private Sub Winsock_DataArrival(ByVal bytesTotal As Long)
Dim strData As String
Winsock.GetData strData
txtMain.Text = txtMain.Text & vbCrLf & strData
txtMain.SelStart = Len(txtMain.Text)
End Sub


Client Side (Some Reson its not connect to the Server, it sometimes get Connection Time Out for one person)


Code:
Option Explicit

Private Sub Form_Load()
txtMain.Text = "Welcome, Please Wait While You Connect."
Inet1.OpenURL rh.Text
Winsock.RemoteHost = Inet1.OpenURL
Winsock.RemotePort = 10101
Winsock.Connect
End Sub

Private Sub cmdSend_Click()
Winsock.SendData "[" + usn.Text + "] " + txtChat.Text
DoEvents
txtMain.Text = txtMain.Text & vbCrLf & "[" & usn.Text & "]" & txtChat.Text
txtChat.Text = ""
End Sub

Private Sub Winsock_Connect()
MsgBox "Connected"
End Sub

Private Sub Winsock_DataArrival(ByVal bytesTotal As Long)
Dim strData As String
Winsock.GetData strData
txtMain.Text = txtMain.Text & vbCrLf & strData
txtMain.SelStart = Len(txtMain.Text)
End Sub

Private Sub Winsock_Error(ByVal Number As Integer, Description As String, _
ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, _
ByVal HelpContext As Long, CancelDisplay As Boolean)
MsgBox "Error: " & Description
End Sub
Source For A Chat Room
Hey, I was wondering if anyone had source for a chat room that JUST supports chat (and whispering would be a nice bonus) but can also handle more then 2 people at a time. Thanx in advance
Connecting To A Chat Room!
Hi Guys,
can someone tell me if it is possible to connect to a chatroom of another program...for example there is this mig33 application it has got chatrooms and basically it is a chatting program...

now is there a way to connect to its rooms using visual basic 6...if there is can please anyone tell me how?

Thx
Chat Room With Voice How ?
Hello
where can i find a good chat code example with voice
to add to my chat room.
and how can i make a streaming of my wave file in a chat room
whereare any example to streaming sound files to ftp server or client.
Thank You for any help

Chat room with Voice How ?
Gettin' In The Chat Room..
Im creating a yahoo client.. it can send a message and receive a message.. But this messenger cannot enter into a chatroom.. can anybody help me?
Chat Room Client
VB Code:
Dim sckBuffer As StringDim clibuffer As StringPrivate Sub client_ConnectionRequest(ByVal requestID As Long)    If client.State <> sckClosed Then client.Close        client.Accept requestID        server.ConnectEnd Sub Private Sub client_DataArrival(ByVal bytesTotal As Long)    client.GetData clibuffer    server.SendData clibufferEnd Sub Private Sub Form_Load()    client.ListenEnd SubPrivate Sub server_DataArrival(ByVal bytesTotal As Long)server.GetData sckBufferDebug.Print sckBuffer    If InStr(sckBuffer, "ENCRYPTION_ON") = 3 Then        server.SendData "# ENCRYPTION_OFF" & Chr(13) & "##"        client.SendData "# ENCRYPTION_OFF" & Chr(13) & "##"    Else        client.SendData sckBuffer    End If


Does anyone have any idea why i get server.SendData clibuffer wrong connection state after about 6 packets?
Chat Room Questions...
ok i've been modifieing this piece of code a bit, and i wanna make it so when users come in the chat it will show it up on user list... all the names of ppl in the chat will be in the user list!!!
heres a screenshot.. and i'll post the code in next post..
Do You Think Vbworld Should Have A Chat Room?
.
How Do I Create A Chat Room That Can....
hi I want to create a chat or a program for my network basically i want to have one server side program that the administrator can use to listen to converstion on client station ie workstation can any one help me.
What do i use and is there a code that can help me in my research project.
Multiple Room Chat
hello... i have just begun learning some visual basic and am not too great at it yet...

well, i along with another programmer (who is a bit better than me) are trying to design a matchmaking system for a video game (motocross mania)... well, we have a basic chatroom that works just great, however we are looking for one to have multiple rooms where a user can create a room and others join it...

seeing as im not very good with visual basic, i really don't have the skills (yet) to do this...

now to the point... would somebody be so kind as to help me out here? does anyone know of a basic multiple room chat that i could use? all i need is to have it have the chat dialogue, a place to enter a message, and a user list.... and then of course a list of rooms and ability to make new and join existing... it would be perfect (and i think the only way possible) if there was a server and client version.... now i realize not everybody will be willing to just do this for me for nothing... well, i can't offer money, but i can offer maybe some graphics, or ASP programming, or html programming in return for a already made chat application or a lot of help in making one .

thank you so much for ANY help in advance... articles, tips, entire chats, help over icq.. anything.. thanks i REALLY do appreciate it...

Redth
Web Based Chat Room
Hi all:
Anybody know how to write a web based message streaming chat room?
I don't want to use client pull method but server push technology. How to develope a chat server COM in vb? Thanks in advanced
Creating A Chat Room!!!!!
I want to make a chat room for networked computers in my school. It would be quite simple with an label at the top and an text box at the bottom. There will be command button so when it is clicked it will carry out,text1.text=label1.capton.

I can only get one text boxs text into the label and if I try again the one before goes.

Also is there somthing I should do when making the program I made will work on a network.

As you have noticed I am a newbie, thanx for your time

Michael Baynham
Chat Room Coding ?
greetings
Does anyone know where i can find some source code for a chat room ? I have started playing with text files and an iis app but I don't think it would stand up to more than 3 or 4 people so i need to have a look at something that works and see what I left out !

Thank
Travis
Chat Room .... Text Box
text box's properties --- if it's a chat room ---
locked,multiline = true and Huh
i want to show the least line every time which user post.
Online Game Chat Room
I'm making a two player online game. Its a tactical fighting game. Two players play and then the results need to be sent in.

What I need is a "Chat Room Area" where players can meet and connect to games and do some chat while they are there. Kind of like a gamespy arcade or something. I really don't want to spend tons of time building something like this from scratch as I know nothing about it and it doesn't particuarly interest me to create anything unique in this area. My game and website are my primary focus. That being said, I need something where people can connect easily and enjoy going.

Any recommendations? Can I take something and adjust it? Any good examples? Or can I use something that is already out there like gamespy or something? I'd just like to know my alternatives. Thanks for any advice.
Chat Room Programs That Beep
I recently created a chat server and client. It works well except for one minor detail. Whenever I send (or receive, I can't tell as both happen at once) the data, it beeps.

I'm clueless as to the cause of the beeping as this is the first program dealing with transferring data I've made. Does anyone know of a way to turn off the beeping? I'm using winsock.ocx .
In My Chat Room Made In Vb I Need Help On Kicking
Hello
I found a chat room that if someone bahave's
i could kick. but that person came back i would have to kick
again how can i rewrite the kick command

i need help without using the mouse to
kick, can i rewrite this kick command to be done
by a call when that person enters the chat room again,
this program below requires you to click
the person to kick in the list.box
can you help me if a person logs on to kick that
person..with a call to a sub command, with out using the mouse as the program requires using the mouse. how can i do it
without the mouse ?
thank you

here is the code below
i did add some code in here..

'''''''''''''''''code begins here'''''''''''''
Private Sub kick_Click()

'If MsgBox("Are you sure?", vbYesNo) = vbNo Then Exit Sub 'if you like it, but it halts the server as long as it stays open!!!!
tokick = peoplehere.List(peoplehere.ListIndex)
Text1 = peoplehere.ListIndex
Text2 = peoplehere.Text

If tokick = "" Then Exit Sub
If noc = 0 Then Exit Sub
For i = 0 To 5
If chatter(i).Name = tokick Then
If win(i).State = sckConnected Then
win(i).SendData "You were kicked from the server!"
peoplehere.RemoveItem (peoplehere.ListIndex)
ws(i) = 2 'for sendcomplete()
noc = noc - 1
GoTo gogogo
Else
peoplehere.RemoveItem (peoplehere.ListIndex)
noc = noc - 1
GoTo gogogo
End If
End If
Next i
Console.Text = Console.Text + vbNewLine + "Chatter to be kicked not found!"
gogogo:
Search = Text2
Where = InStr(Form1.Text4.Text, Search) ' Find string in text.
If Where Then ' If found,

Form1.Text4.SelStart = Where - 1 ' set selection start and
Form1.Text4.SelLength = Len(Search) ' set selection length.
Else
'MsgBox "String not found." ' Notify user.
GoTo xxx
Exit Sub
End If
xxx:
Command1_Click
End Sub

''''''''''''''''''code ends here''''''''''
'subject In my chat room made in vb i need help on kicking
'''''''

<P ID="edit"><FONT SIZE=-1><EM>Edited by visualbasic700e on 12/02/00 12:15 PM (server time).</EM></FONT></P>
Send Text To A Chat Room
Hey all I was woundering how you would send text from a visual basic program to a paltalk chatroom
thanks
Odd Problem Connecting To Chat Room In App.
Hey guys I have a program that has a chat room add on for it, but the problem is whenever more than 1 person connects. the list of people online gets all weird . Like it will show the names of people online but show the word "cons" all through the list so it would be like "Person1", then cons, then "Person2" then cons, then Person1, and Person2 and then cons.

And the list goes on to repeat the names of the users online over and over. I use the following code for the winsock2


VB Code:
Private Sub Winsock2_Connect()Dim Msg As StringConnectionLabel.Caption = "ONLINE"DoEvents                        'Without the DoEvents sock will not send the data because sock haven'tMsg = "name|" & txtName.Text    'connected yet.Winsock2.SendData Msg 'Send our name.ConnectionLabel.Caption = "ONLINE"End Sub


What may be causing this error? Thanks!
Very Simple Multi Room Chat
hi
i was wondering if anyone can help me?i have a chat i been working on for along time now and im trying to add multi rooms but have no idea how is there any very simple way to do this thanks....
Chat Server/client With More Than One Room
hi
i'm trying to make a chat server with several rooms but i don't know how to start with it.
i want to make a program that runs on my pc (the server) and a program for the clients.
i've downloaded some single room samples but i shouldn't know how to make more than one room. and i also want the clients to be able to chat in more than one room at te same time, private messages, kicking, banning... those last things i could fix by myself i think but for the rooms i need some help of you folks.

does sombody maybe has an example of a multy-room chat server/client?Huh

thx
Moperke
Building A Room Hit Counter For A Chat Program
what i want to know is how to get it to find a string like


has joined the group ***


soo that everytime someone joins the group my program sees this string and + 1

thanks
User Enter/login For Chat Room
VB Code:
'user addedstruser = txtusernameLstTextFile.AddItem struser


that adds the user into the chat room, but how can i make that say, "(user) has just entered into the chat room"
Multi Client Chat Room With Server In Vb?
Ive been scouring the net now for about a month for a chat room application in vb, where users can set up their own chat room and other users can join it. So the client has the ability to make a room or join an existing room. But there also needs to be a central server that monitors all rooms that have been created.

I have failed to find a sample application that meets these requirements so if you guys know of one that will help me in anyway id be very appritiative.

Any help of any kind whatsoever with this one, im stuck...

Thanks

Malb
VB-World ---&gt; Needs Chat Room! Sign Petition Here!!!
If you want a chat room post your desire here.

Sal for chat room.
In My Chat Room When People Type And Send It Doesent Go Down A Line
It's Like This : Default:HiDefault2Hello
Here Is The Code I Use
= Option Explicit
Private Sub Command1_Click()
On Error Resume Next
If Option1.Value = True Then
'Host
Winsock1.LocalPort = 6667
Winsock1.Listen
ElseIf Option2.Value = True Then
'Client Connect
Winsock1.RemotePort = 6667
Winsock1.RemoteHost = Text1.Text
Winsock1.Connect
End If
End Sub
Private Sub Command2_Click()
Winsock1.Close
End Sub
Private Sub Command3_Click()
On Error Resume Next
Dim Total
Total = Text2.Text & ": " & Text4.Text
Winsock1.SendData Total
Text3.Text = Text3.Text & Total
End Sub
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
Winsock1.Close
Winsock1.Accept requestID
End Sub
Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim strData
Winsock1.GetData strData, vbString, bytesTotal
strData = Text3.Text & strData
Text3.Text = strData

End Sub
Private Sub Winsock1_Connect()
Label3.Caption = "Connected"
End Sub
Private Sub Winsock1_Close()
Label3.Caption = "Disconnected"
End Sub
| What Is The Problem
How Do I Make A Chat
hey, i need help making a chat i've tried many tutorials and i can't find anything... can anyone please help me, if i can email me it would be great, my email iz... jamest_net@msn.com. ta,

James
How To Make An Msn Chat Bot?
how to make an msn chat bot?
How To Make A Chat?
Hii,

I know there's lots of tutorials and dozens of free chat for download, but I just wanna know some basics about making a chat app before I start myself.

I have noticed that almost all VB chat use winsock and as far as I can see that means you need a server and a client chat. Isn't there a way around this. I'm developing a small text based game, just for the kick of it and I don't really like the idea of having a chat server.

So should I save the chat in a txt file on a server I've access to and won't that limit the number of people being able to chat at once.

ThanX
How Do I Make A Chat
how do i make a chat , si that many people can come in .
IS THAT We Can Make Chat App With Vb6
i trying and traing to make chat app that work over the internet not inside the network
when i try once is work and most of onces is not work
why ? that in the end i make my app with direct x 8
is it is good ??
thanks
Make A Chat Program In Vb6.0?
Hello

Is it possibole to make a litel chat program ,a bit like msn/icq or something?And if its possible what do i need and howe to make it?
Make A Chat Program
how can i make a chat program that has channels and nicknames ?
Make Voice Chat By LAN
Hello
I made chat program working by LAN (IP), and I use Microsoft Winsock Control.
Can I make voice chat (from Mics) by using LAN (IP) Microsoft Winsock Control? and how?

Thanks
How Do I Make A Chat Program?
Hello everyone,
i was just donering how can i actually make chat room program that lets people once they open it connect to some ones ip to chat to them into a room. i hope some one can help me.
How Do I Make My App Win Blink Like A Msn IM Chat?
read the topic title
Make A Voice Chat
Hi!

I want to make a voice chat application on LAN.
Is there any ready to use component for voice chat?
or i should use winsock (UDP) and directsound?!
and how can i use directsound to play an array (not
a file)

Thanks a lot
A.B.Fatehi

article submitted by a student...share your own here
Logged
Pages: [1]   Go Up
Send this topic | Print
Jump to:  

Get Daily Ayat & Ahadith. To subscribe simply write JOIN ysa1 in sms send it to 8002. for Quotation, Recipes, Joke, Words alerts click here