Tag archives for Tech Solutions - Page 2
Working with Moment.JS
is an intelligent JavaScript library to Parse, validate, manipulate, and display dates and times for given formats. Here in this article, I want to provide some mostly used conversions for any projects which hard to…
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…
Unable to launch the IIS Express Web server [Solved]
Recently, I got some source code for one of the projects and when I try to open this application using Visual Studio 2015 and run the application. I got the…
log4net.Config.XmlConfigurator.Configure() taking too much time
Hi All, Recently, I came across a strange issue with my log4net configuration. When I run my application it's taking almost 15 to 30 seconds at following statement and it…
How to secure your entire MVC application with “Authorize” attribute ?
Scenario: If you would like to secure your admin pages, you would add “Authorize” attribute for all your admin controllers. However, you might get a situation like; you need to…