Somebody Help me in this complicated program!!
I have two PC's connected through LAN,the first PC has a program written in VB contains text
boxes,these Text boxes has a periodically - updated values (like a program reads temperature
every # seconds using external thermometer)
the task is to write a VB program on the second PC accessing values in text boxes and display it
on its screen by any way(label or textbox)
i am very confused because i don't where to start this project,somebody give me a brief describtion
PLEEEEEEEEEASE HEEEEEEEEEEEEEELP
Re: Somebody Help me in this complicated program!!
You should use the Microsoft Winsock control.
The program that reads temps and has them in textboxes, should be a server.
The PCs that connect to that computer to read those values are the clients.
There are a lot of Winsock client/server examples on here and everywhere else on the internet.
Re: Somebody Help me in this complicated program!!
If you just need to display whats on first PC then use remote desktop or VNC. No need to go through trouble of writing and maintaining another program.
If data needs to be stored then modify program in first PC to save to a database. All other clients will connect to database to retrieve values.
Re: Somebody Help me in this complicated program!!