Author Archives: saikk - Page 6
How to know which Folder/File taken much space on you System?
Every computer user at any time he/she might face a problem with disk space issue. If you want to install anything or copy any data there might be insufficient disk…
Showing any Language Text to a Screen as Bitmap
Recently I had a requirement to print the Telugu language characters on the PDF file. I was just done some research but not found any concrete solution on google. Finally, I came with the following solution…
WinForms CheckedListBox control Select ALL Implementation
Recently I am working on windows based application after a long back in which I am using ChekedListBox control where I need to list all the subdistricts information based on…
CheckedListBox CheckedItems vs SelectedItems [Solved]
Recently I am working on windows based application after a long back in which I am using ChekedListBox control where I need to list all the states information based on…
How to configure C# WebApi2 to display data in JSON format directly in browser?[Solved]
Recently I was asked a question "How to configure C# WebApi2 to display data in JSON format directly in browser?" by one of my colleague. This is a simple solution…
How to rename file extensions (from ZIP to ABC files etc) in Windows
Sometimes there will be some requirement, for example, my firewall will block all .zip files. For such restrictions, we might need to find a way to fulfill our requirement. It…
Understanding Virtualization and Hypervisors
What is Virtualization? Virtualization is the process of converting physical IT resources to the virtual IT resources like servers to Virtual machines, storage to virtual storage and networks to virtual…
History and Evaluation of Cloud Computing
Before understanding cloud, we need to understand the history and how data is to manage earlier days like in 1960's? The answer is Mainframes. Mainframes are large and high computing…
Missing compiler required member ‘Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create’ [Solved]
Issue Recently I am trying to create a dynamic variable (using new feature DLR introduced since FW ) by assigning some object in an .NET Standard library project. When I…
Downloading PDF File from Server to Client using ASP.NET & MVC C#
Problem Statement This is a very regular requirement especially for online education or E-commerce applications, a user will be given an option to download the payment receipts or certificates on demand. Solution In this article…