Slighthaze = [color blue]NULL[/color]
[img http://www.sweetpotatosoftware.com/ttimages/vfpchat.gif]
This FAQ is a work in progress, but I wanted to get it up here since it shows how to communicate via UDP between two forms. It could just as easily have been two processes or computers communicating, but I wanted an example that you could run from a prg file inside VFP for now. The reason I started this project was because I was looking for a way to communicate between all the instances of an application in a multi-user setting without having to create some sort of message queue and check it with a timer. That seem pretty inefficient to me. Things I thought I could do with the ability to send and receive messages in an application was allow system administrators to send out messages to users that a proposed action was about to take place such as "Backing Up the Data in One Minute!". I thought they could even send a message to the running applications on the remote workstations telling them to shutdown gracefully if a user wasn't present to respond. I also thought that it would be an easy way to keep track of all the users currently logged into the application or how many copies were currently running (a sort of LAN strobe if you will) There are other possibilities for this such as sending data back and forth, notification of a change in application state, etc. So, as you can see, though the program is entitled VFP CHAT CLIENT, it is just a simple example that opens doors to many possibilities.
This code uses the MS Winsock control. I am assuming that you have it registered on your computer - if not then do so before running the example. The ports being bound to are 1234 and 1235 - if either of these conflict with something already running on your computer, change them before running.
Possible future changes for this FAQ include:
[ul][li]Choosing protocol TCP/UDP[/li][li]Binding to different ports[/li][li]Chat Server to act as relay[/li][li]HTML and/or XML support[/li][li]Compression and Encryption of data sent[/li][li]Sending Files across[/li][li]Blocking[/li][li]Who's Online/Offline List[/li][/ul]
Special Thanks to Aircon for his code revisions - see Thread184-541348 (I have incorporated some of them here and will incorporate more of his ideas in the future additions to this FAQ).
*CUT-N-PASTE the code below into a prg and run it from within VFP*
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.