PDA

Click to See Complete Forum and Search --> : network


vb5prog
Jan 19th, 2000, 07:45 AM
can i make a program to send messages over a LAN just like winpopup. winpopup is okay but i need to make a few adjustments thanks

XxEvilxX
Jan 19th, 2000, 08:47 AM
just use winsock like

code for send

winsock1.data("Msgbox" & " whatever to say")


recived code
[code]
dim i
i = winsock1.getdata
dim b
i = mid(i,6,100)
msgbox(i)

i think it well work i dont now

XxEvilxX
Jan 19th, 2000, 08:47 AM
just use winsock like

code for send

winsock1.data("Msgbox" & " whatever to say")


recived code

dim i
i = winsock1.getdata
dim b
i = mid(i,6,100)
msgbox(i)


i think it well work i dont now