-1

i am develop a application based on log in and log out for my students. when my user logged in, the start up application will be load. during the start up!

My Question : all my desktop icon and other application should be disabled when my start up application load.Any one suggested me i really owe to you guys.

1 Answers1

0

What language are you using? Here is an example of C#: How to hide desktop icons programatically?

anyway you can use the windows API with C# or C++ don't know about java. Try and see if it works.

Community
  • 1
  • 1
AlCode
  • 565
  • 1
  • 8
  • 23
  • actually my code is C# vs 2005 and my Win7 os @zedd.. now i find my solution for my problem., here my code is i work with registrykey for my application : ** RegistryKey rkApp = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows \\CurrentVersion\\Run", true);** if (checkBox1.Checked) { // Add the value in the registry so that the application runs at startup rkApp.SetValue("MyApp", Application.ExecutablePath.ToString()); } else { // Remove the value from the registry so that the application doesn't start rkApp.DeleteValue("MyApp", false); – Dinesh Ginagar May 08 '15 at 09:16