Blog Posts on .net framework 4.0




Percent:
 
Distinct:
 


Check Microsoft .NET Applications With Kaliro App Explorer by Fryan's Digital World on Oct 8, 2010Last Monday, I stumbled upon PeStudio, a tool that can inspect any executable files. Kaliro App Explorer is a similar application but targets programs developed for .NET framework. This tool can be used to check the anatomy of any .Net based applicat...



Bend Text Editor: Sleek And Sexy Notepad Alternative by Fryan's Digital World on Aug 8, 2010When it comes to notepad alternative, Notepad++ is number one in my list. But this is when before I discovered Bend, a sleek and sexy modern text editor. This text editor aims to be elegant, clean and a pleasure to work in. It is free and opensource,...



How To Right Align Cell Content In ListView by Fryan's Digital World on Jun 25, 2010While programming the maintenance form of my newest project, I encountered a simple but lucid problem. The challenge was to how I can right align the content of a cell on a ListView control. Since I am new in WPF programming, I should embrace the cha...



Alternating ListView Row Color In WPF Application by Fryan's Digital World on Jun 24, 2010Today I'm starting a new project for my full-time work. The project is to developed a Business Key Performance Indicator for the company. The end-users for this project are executives and line managers so I have to make it as user-friendly as possibl...



How To Dynamically Populate A ListView From A Database In WPF Application by Fryan's Digital World on Jun 22, 2010My favorite Visual Basic control to display tabular data is Listview, which I discussed here. With the introduction of WPF (Windows Presentation Foundation) application in Visual Studio 2008 and 2010, I started developing my new projects on it. WPF a...



.NET Framework 4.0: Access the computer location using System.Device.Location Namespace by Fryan's Digital World on Mar 10, 2010Now finding the physical location of a target computer is never been easy in the newest namespace of .NET Framework 4.0. With the System.Device.Location namespace, application developers can now easily access the computer's location information that...



.NET Framework 4.0: Check If String Is Empty or Null Using String.IsNullOrWhiteSpace Method by Fryan's Digital World on Mar 8, 2010There is a new class library method in .NET town. You can now easily check whether a specified string is a null reference (Nothing in Visual Basic), empty, or consists only of white-space characters by using String.IsNullOrWhiteSpace Method. This new...



Automatic Sorting Of List Using SortedSet In.NET 4.0 by Fryan's Digital World on Mar 6, 2010SortedSet Class is one of the newest class library in .NET Framework 4.0. It represents a collection of objects that is maintained in sorted order. To demonstrate how it use, here is a sample code that initially inserted some random strings and then...