Showing posts with label WindowsApp(C#). Show all posts
Showing posts with label WindowsApp(C#). Show all posts

Sunday, November 21, 2010

Delegates:

A delegate is a type-safe object that can point to another method (or possibly multiple methods) in the application, which can be invoked at later time.

Monday, October 18, 2010

How to provide application "Admin privilege" in Vista and Windows 7 By C# (Visual Studio)

For giving Administrative privilege we have to make our application UAC compliant,
so that it will ask user to grant your application Administrator access.

To make our application UAC compliant,
Double Click My Project in Solution Explorer and Click UAC Settings button as shown in image.











Then Modify app.manifest file as shown below. Make it 'requireAdministrator' instead of 'asInvoker' and save.
Hoping this post will help you...