I am writing an app for my office to control remote machines and sending
data to particular computers on the network.
I am looking to be able to send data to a remote app i have written.
Here is the server side of the code.
Dim str As String
winsock2.SendData str
//This sends data to the client on the workstation.
Client side
//It searches a Case statement then runs this
Case "PrintStuff"
Call PrintStuff
which calls this
Public Function PrintStuff()
Printer.FontSize = 20
Printer.Print " "
Printer.Print " "
Printer.Print " "
Printer.Print Spc(15); ""
Printer.Print Spc(15); " Print this line"
Printer.EndDoc
End Function
What i want it to do is print what i type in to a text box on the server
app, can anyone help please?
Thanks
John