chat application

  • Thread starter Thread starter Bllich
  • Start date Start date
B

Bllich

Greetings,
there is a nice multi-user chat application written by Microsoft in VB
which code is on the location:

http://download.microsoft.com/download/c/4/8/c488a081-85f2-4a2e-a121-
ef5cad681313/vbSockets.exe

I started translating it in C# and couldn't finish it..

The program 5 years old :) , but I find it very useful, it's
just that is VB language that I can't translate to C# to make it
work properly.

There is not a lot of code, and if you open Help -Index in Visual
Studio and type Chat application, there it is..

If someone would be kind enough to help, I would very appreciate it!


Ivan




--

‘Yes, I have a pair of eyes,’ replied Sam, ‘and that’s just it.
If they wos a pair o’ patent double million magnifyin’
gas microscopes of hextra power, p’raps I might be able to see
through a flight o’ stairs and a deal door;
but bein’ only eyes, you see my wision’s limited.’

‘Pickwick Papers’ (1837) ch. 34
 
There are a couple chat applications in the .Net framework 1.1 SDK. One of
which is actually in the Delegates and Events section and the other, if I
remember correctly, in the sockets section. There is VB and C# code for
both. If you have installed Visual Studio .Net 2003 then you have both these
projects already. The .Net 2.0 SDK has a third way of doing chat. Again,
both VB and C# code are available.

HTH,

Dale
 
There are a couple chat applications in the .Net framework 1.1 SDK.
One of which is actually in the Delegates and Events section and the
other, if I remember correctly, in the sockets section. There is VB
and C# code for both. If you have installed Visual Studio .Net 2003
then you have both these projects already. The .Net 2.0 SDK has a
third way of doing chat. Again, both VB and C# code are available.

HTH,

Dale

Dale, thank you very much...

--

‘Yes, I have a pair of eyes,’ replied Sam, ‘and that’s just it.
If they wos a pair o’ patent double million magnifyin’
gas microscopes of hextra power, p’raps I might be able to see
through a flight o’ stairs and a deal door;
but bein’ only eyes, you see my wision’s limited.’

‘Pickwick Papers’ (1837) ch. 34
 
Hi Bllich!
there is a nice multi-user chat application written by Microsoft in VB
which code is on the location:

http://download.microsoft.com/download/c/4/8/c488a081-85f2-4a2e-a121-
ef5cad681313/vbSockets.exe

I started translating it in C# and couldn't finish it..

It seems Dale already answered your questions so I just want to recap what
Frank wrote because I'm not too sure if you speak German or not.

So, please avoid cross-posts in the future and if you really feel that a
cross-post is appropriate do not post across groups in which different
languages are spoken (the latter is considered to be rude). Thanks!

--
Best regards
Dennis Dietrich
Developer Division
Microsoft Corporation

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Blich,
Download yourself a copy of Lutz Roeder's "Reflector" and a copy of Denis
Bauer's "File Disassembler" add-in for same, and you can load the assemblies
and decompile them quite nicely into C# projects.
Peter
 
It seems Dale already answered your questions so I just want to recap
what Frank wrote because I'm not too sure if you speak German or not.

So, please avoid cross-posts in the future and if you really feel that
a cross-post is appropriate do not post across groups in which
different languages are spoken (the latter is considered to be rude).
Thanks!

I'll keep that in mind. thanks. no bad intentions indeed..

--

‘Yes, I have a pair of eyes,’ replied Sam, ‘and that’s just it.
If they wos a pair o’ patent double million magnifyin’
gas microscopes of hextra power, p’raps I might be able to see
through a flight o’ stairs and a deal door;
but bein’ only eyes, you see my wision’s limited.’

‘Pickwick Papers’ (1837) ch. 34
 
=?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?=
Blich,
Download yourself a copy of Lutz Roeder's "Reflector" and a copy of
Denis Bauer's "File Disassembler" add-in for same, and you can load
the assemblies and decompile them quite nicely into C# projects.
Peter

:)
I will give it a try, thanks!!

--

‘Yes, I have a pair of eyes,’ replied Sam, ‘and that’s just it.
If they wos a pair o’ patent double million magnifyin’
gas microscopes of hextra power, p’raps I might be able to see
through a flight o’ stairs and a deal door;
but bein’ only eyes, you see my wision’s limited.’

‘Pickwick Papers’ (1837) ch. 34
 
if you want multi user chat then take a look at XMPP protocol and MUC.
There are lots of existing c# libraries and applications.

http://www.jabber.org
http://www.jabber.org/software/libraries.shtml
http://www.jabber.org/software/clients.shtml

Alex

thanks alex

--

‘Yes, I have a pair of eyes,’ replied Sam, ‘and that’s just it.
If they wos a pair o’ patent double million magnifyin’
gas microscopes of hextra power, p’raps I might be able to see
through a flight o’ stairs and a deal door;
but bein’ only eyes, you see my wision’s limited.’

‘Pickwick Papers’ (1837) ch. 34
 
Back
Top