I want to develop an app which won't allow the user to open or jump to another application while it is open. It should be in Visual Basic. For example, if my application is open (running) and the user tries to open any other windows application like "media player" then it shouldn't open. The app should not even allow "task manager" to run. The application should completely block the windows environment while it is running.
|
|
|||||||||||||
|
|
A very good question. :) Is is possible to achieve it in VB? The answer is Yes! Is it Easy? Definitely not! However here are few tips on how to approach the problem. 1) Disable the Task Manager
2) Ensure your program is always on top a) Hide the task bar
b) Show your application Always on top
b) Show your application in maximized mode Maximize your form so that the desktop shows only your form as it shows in a Kiosk application. Depending on the need you can also disable the minimize button or the title bar. In such a case do remember to add a button so that user can click that to exit the form. 3) Disable the Start Menu This code depends on the Windows version that you are using. Do a search on Google, you will find plenty of examples. Similarly, you have to take care of few small small things but this post will give you a good start. If you are looking for a complete solution in one place then I doubt you will ever get it ;) HTH |
|||||||||||
|
|
|
Take a look at the Desktop APIi to create your own "sandbox" but very careful as it's very easy to lock yourself out of the primary desktop. Also see this question for a bit more information. |
|||
|
|