Making A Messenger Client?

Jul 14, 2010

i am trying to make a messenger client which will work like alerter or similar, so far i have decided to to make two applications,

1) which will send messenger,(sender)

2) which will accept msg and display a alert to user using msgbox.(receiver)

i have started coding receiver, i am using port 6000 to listen to messenger.so far i have made code to listen to port(open/bind/listen)but now i am not able to figure out how to display messages to user received on that port.

Dim RecieveSocket As Socket
Dim PortListen As Int16 = 6000
Dim address As IPAddress = IPAddress.Parse("0.0.0.0")
Dim endpoint As New IPEndPoint(address, PortListen)

[code]....

View 4 Replies


ADVERTISEMENT

VS 2010 Client-to-Client LAN Messenger?

Jun 15, 2010

Can't find any free ones so thought I would work on one on my own for the heck of the learning experience with TCP stuff.I'm about ready to start on the messaging aspect of it.The biggest thing I'm wondering about is figuring out when people are online.I'm not too sure how the whole thing works.Say I turn on my messenger. Would my messenger just send a message to all IPs on a certain port to say I'm online and then wait for a message back from the IPs that can return messages and then figure out who is online that way?

View 13 Replies

Making A Messenger - Program A Slight Delay In The Computer's Answer?

Jan 15, 2010

I'm working on a project where I make a automatic messenger from VBnet. I want to program a simple one that responds to certain words or phrases. However, I only know the rough basics of If...Then commands. I have a lot of problems:

1. How do I make it so the messages typed in the box actually goes up into the script box when I press send?

2. How do I program a slight delay in the computer's answer?

3. How do I set a name to the computer and to me?

4. How do I make the script goes into scrolling when it runs out of space.

5. If possible, when I type an equation in the box, can I program the computer to solve it and display the answer? I'm a beginner so I don't really know the overall organization of this project. However, I would like it to remain as simple as possible.

View 4 Replies

Make A LAN IM Client Using The Net Send Command - Intercept Messages From Windows Messenger Service

Jun 5, 2009

I'm trying to make a LAN IM client using the net send command and I was wondering if there is any way to capture the text of the messages received through net send and display them in a label.

View 6 Replies

Making A Builder For A Simple Ftp Client?

Jun 11, 2011

I'm making a builder for a simple ftp client, but i have a problem.I have readed a tut about a builder with a stub, thats done but i only can fill in 1 form, but how can i make that my builder fills 2 forms in the client?

My code in the stub is:

Dim options(), text1 As String
Const FileSplit = "@vorfin@"
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)

[code].....

View 1 Replies

VS 2008 Making Client And Server?

Apr 11, 2009

I'm making a program that would require me to send data between to different machines.The way i plan to do this is to have a server program constantly running on my computer.(any other way to do this?) When someone opens the Client program, the program connects to the server. The server then takes the users I.P address and Username and adds it to a listbox on the Server application. Then the server application constantly updates the list of users on the Client application. So that way every user can see everyone that is connected.Then, when the user wants to connect to another user - They select the Username from their listbox of users. Then all connections will be handled between the users = Each user is connected to the other user's Client program. Well there is the first thing i don't know how to do.The next is simply how i send the data between the users. Would i use a winsock control?Example: One user does an action. The winsock control sends the text "blue" to the other user. The other user's program's form color changes to the color blue. That's not what this program will do, but it's just an example.

View 6 Replies

Making An Email Reader Program - TCP Client + SSL?

Jul 12, 2006

I am making an Email reader program, and I need to use POP3 servers. I learned the protocol so I'll could use winsock for the connections.The problem is, that a lot of servers require SSL connection, and I don't know how to open one...I know there is a way with the TCP socket, but I don't know how......

View 1 Replies

Making Voice Chat (client/server)on .net2008?

Mar 6, 2010

making voice chat (client/server)on vb.net2008

View 6 Replies

VS 2008 : Making A Chat Client And Server With Winsock?

Feb 10, 2010

Make a Chat Server and Client using winsock:I want to have a Login forum and Be able to ban user and Give them ranks I would like it to Use INI files.

View 2 Replies

Client-Server-Client Multithreading - Instant Message Another Client

Jun 21, 2010

We are creating a Who wants to be a millionaire style game in VB. Our server is pulling information such as questions and answers from a Access Database and sending them to the contestants (Clients). All transfer of information is directly from the server to each client. One of the "Life Lines" we want to use is "Ask a friend", where one client is able to Instant message another client for a short time to get help on the question.

[Code]...

View 2 Replies

C# - .NET And P2P - Writing A P2P Messenger

Mar 22, 2010

how to write such app? Or maybe knows some nice tutorial? I would like to use System.Net.PeerToPeer namespace, but everything I can find about it is MSDN which I can't read without getting mad. Or maybe using "old-school" TCP/IP would more efficient?

View 1 Replies

Get And Send Messenger On IM?

May 26, 2010

How to get and send messenger on windows Yahoo !

View 2 Replies

MSN Messenger Like Notification?

Jun 17, 2009

I'm looking to write a notification application where I'd like to provide popup notifications from the taskbar similiar to the ones in MSN Messenger or most other chat programs.

View 4 Replies

C# - Blackberry Messenger Or Whatsapp API For .Net?

May 10, 2012

I want to know that is there any API available for Blackberry Messenger or Whatspp for C# or VB.net??

View 1 Replies

How To Make A Simple Messenger

Feb 6, 2011

Is there a way to accomplish a messenger of that style:The application has a listbox, a textbox, and a button Every user with the program on his pc can type something in the textbox, press the button and this appears on his listbox but also on every other listbox of people that have opened the program.Is there also a way to get another listbox with the nicknames of the people that are in the program?

View 11 Replies

Msn Messenger Send Nudges ?

Jan 24, 2009

In this code why it aint working. This prog should send 2 nudges using windows msn messenger.using vb.net 2008

Imports MessengerAPI
Imports MessengerPrivate
Imports Messenger

Public Class Form1
Public WithEvents Msn As MessengerAPI.Messenger
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal

[CODE]...

View 9 Replies

Set Programme To Use The Internet For Like A Messenger?

Oct 4, 2009

how do i set my programe to use the internet for like a messenger?

View 2 Replies

VS 2008 Working On A LAN Messenger

Oct 7, 2009

So I'm trying to code a lan messenger in vb.net 2008, but I cannot figure out a good way to do it, i would love it if someone could work one on one with me to develop the code as I would like to learn from this and not just blindly copy code.

View 4 Replies

Want To Enhance Instant Messenger

Jul 24, 2009

I have instant messenger that I have built its working great with the assistance of a few of you in this great forum..Now I would like to enhance it alittle more and have not been able to get it to work. So here I am asking you out there again for some help. I want each user that logs in to have a different color font for there messages. I believe it would have to go in the recieve messages from server part of the code. Can you please assist with the code and where exactly I would put it. The code below is for the client side there is also a sever side code not provided unless you need it for this project. [code]

View 3 Replies

Where To Find Working MSN Messenger API

Sep 5, 2009

Where can I download a working MSN Messenger API or something like that? I've been looking for hours, but I just can't find a download link.

View 2 Replies

Create An Instant Messenger In Program?

Apr 29, 2010

I am manually entering IPs still as the IP variable.

My error is occurring within the RecieveData() method near the bottom and has something to do with threading.

The message is getting through, but will not display in the rich text box I've made to display it in.[code]...

View 1 Replies

Create An Instant Messenger Without A Server?

Apr 16, 2011

One of the companies I support has a group of people on an isolated network. No access outside their subnet at all. They are on multiple floors and have asked if they can get something like Office Communicator, they don't have email and are tired of making phone calls every 5 seconds. Only there is no budget for Office Communications Server, they are cheap. I can't find any instant messenger programs that connect two computer directly so I thought I would write my own, seems like it would be fun. All the samples I have found on here are more like chats then direct communication between two computers.

View 4 Replies

Create Bluetooth Messenger For Computers?

Sep 13, 2011

i wanted to create bluetooth messenger using vb.net for computers.

View 2 Replies

Develop Ip Messenger App For All User Connected In LAN

Dec 29, 2011

I want to develop a Ip messenger app in VB.Net for all the user connected in LAN.I am able to send message to user according to IP Address.I want a functionality to list all the user which are connected(Using) to this app so that they can receive message.How to check whether the person at other location is connected to the app or not.I first used System. Net. NetworkInformation.Ping and PingReply to get whether user is available or not.[code]Also error is returned after delay if I write this code in try catch block. Is there any quick way to check whether there is a listener at a particular given port?

View 1 Replies

Find Stored Login Name Of MSN Messenger With C#?

Dec 28, 2011

I have multiple chat programs (e.g. MSN, Yahoo *Messenger*, ICQ etc.) where the login name is stored, and I only need to type in the password to log on to in. But it's a hassle to open each and every chat program then login.So, I attempt to write an application where it fetches all these stored chat program's user name into one application under a single window/form (similar to [url]..., but I'm doing a desktop app version). User can then login in to any chat program in one application.The first step is: how can I get or where do I look for the stored user name of a chat program? I looked into Credential Manager, but it isn't helpful.

View 2 Replies

How To Start Windows Messenger Service

Oct 19, 2011

Is it possible to Start Windows Messenger service and set the Startup type to Automatic?

View 1 Replies

Make App To Log Into A Chat Messenger's TCP Server?

Aug 22, 2009

Im am completely bored and wanted to make my own version of the palringo chat messenger (just to log into the palringo servers tho) and i have what i believe EVERY bit of the server info i need. [code]...

View 7 Replies

Program To Sit On The Right Bottom Of Taskbar Beside Msn Messenger?

Feb 12, 2009

i want my program to sit on the right bottom of taskbar beside msn messenger, clock

View 2 Replies

VS 2008 Creating An Instant Messenger?

Jan 23, 2010

How would i start to go about creating an instant messenger?I start with MDI Child Form. But how would i get the messages to be sent instantly? And over what ?

View 4 Replies

Writing A Program With 1 Client And Server Where Client Side Creates A Text File

Dec 1, 2008

I have been reading through Atheists posts in regards to client-server and TCP client/server connection's. But how do i go about writing a program with 1 client and server where the client side creates a text file.Once the server sees there is a text file it connects and downloads it to itself or the client pushes the text file to the server.Once on the server i will read the text file and put its info into a sql db.

View 14 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved