How to get Clipboard data and its size in C#.Net
Following function will get the clipboard data: [DllImport("user32.dll")] static extern IntPtr GetClipboardData(uint uFormat); [DllImport("user32.dll")] static extern bool...
View ArticleHow to clear clipboard text using C#.Net
Known exceptions:Case 1:It you use Clipboard.SetText(string.Empty) to clear clipboard text, you will get an ArgumentNullException exception: "Value cannot be NULL".It is because you cannot set empty...
View ArticleHow to load registry hive of logged off users in C#.Net
In HKEY_USERS, SIDs of only logged in users are present by default. If you need to make changes in any user's registry in logged off state, you will have to load the registry hive of that particular...
View ArticleHow to Enable, Disable and Start the task of task scheduler in C#.Net
Below function demonstrates how to enable, disable and run the already created scheduled task. It will first check if the task exists in task scheduler:public static void...
View ArticleHow to host WCF service in IIS manager
To host the WCF service, follow the below steps:Add virtual directory in "IIS Manager"PC Name -> Sites -> Default Web Site -> Add virtual directoryType in the alias (name) and browse to the...
View Article