DEMOs
-----

These are not meant to be full-blown products.  They just show how you might go about doing something.

VBMUD:
This shows a sample MUD (very, VERY, basic mud) written in VB.  It's a starting point for you (if you aspire to making your own mud).  I don't actually recommend writing a MUD in VB -- but, it's something to play with...  Anycase, it doesn't do much (because, like I said, I don't recommend a MUD in VB...).  But, it will show you some of the things you will need to think about and how you can go about setting up 'processors' for users and caching the user input until you have a full line of text.

All it will do:  Accept users, respond to LOOK and WHO, and show the # of current users on the system.

I love messing w/ MUD's, so I may release a -real- version of a mud in C that you'll be able to customize. 


SERVER:
A sample multi-user chat server written in C/Windows.

Just TELNET to port 4444 and all users on that port will see what all other users are typing...

It should have stuff like: Who typed it, 'wait-for-line' processing, etc...  But, again, it's a sample of what you need to do.


CONNECT:
Shows how to connect to a service and read/write data.

NOTE: This is a very rudimentary 'telnet' style app.  Feel free to improve it, etc...  But, don't expect much from it...

