VBs How can I Show a InputBox on a Client Computer?
-
what the subject says :D I have a server where the skript is running. Now I have the PC-Name, where i will show the inputbox. How can i do that?
-
what the subject says :D I have a server where the skript is running. Now I have the PC-Name, where i will show the inputbox. How can i do that?
You can't. The script MUST be running on the client computer in order to show a user interface on it. You'll have to entirely rethink how you're doing whatever process you're doing.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
what the subject says :D I have a server where the skript is running. Now I have the PC-Name, where i will show the inputbox. How can i do that?
As Dave said, you cannot do this. You would have to install a client version of your software that is listening on a certain port. Then you can have a server version of your software that sends messages on that port. However, if you do not need to ask for input and all machines are Win7 or higher, you can use msg. Open a command line and type msg and you'll see the options, http://pcsupport.about.com/od/commandlinereference/p/msg-command.htm[^].
There are only 10 types of people in the world, those who understand binary and those who don't.