Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Having a problem creating a chat program

Status
Not open for further replies.

Dpac

Programmer
May 29, 2001
6
0
0
GB
I have created a chat program that allows people with a program to chat on a lan and the database on a public server with the exclusive off . But when they wish to wisper , ie chat only between themselves and not with everybody , I use crea table ....... for them only which is programed to be erased when one of them logs off . the only problem is that the other person is logged still on and error messages appear . What do I do ???????
 
If you will erase chat... table,
try something like
use chat...
on error ?? chr(7)
use chat... excl
dele file chat...
on error
 
Sorry, between use excl and dele file must be
use (deleted file must be closed), so better:
sele chat...
use
on error ?? chr(7)
use chat... excl
if used()
use
dele file chat...
endif
on error
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top