Blog Posts on coding tips and tricks
Percent:
ASP.NET: How To Add Paging On GridView Dynamically by Fryan's Digital World on Jan 16, 2012Because of busy schedule on my day job, my last post was 10 day ago. To make up for it, I'll discuss an ASP.NET coding technique today. My topic is How to use paging in GridView control. First you have to set AllowPaging property to true as shown bel...
VB.NET: How To Refresh Items In ListView Or ListBox When Loading Huge Amount Of Data by Fryan's Digital World on Nov 23, 2011Take a look at the code below. The code tries to add 100000 items on a listbox. For i As Integer = 1 To 100000 ListBox1.Items.Add("This is item no. " & i) Next When you run the code above, you'll notice that your form freezes and all...
C#: Read Emails Using IMAP by Fryan's Digital World on Nov 10, 2011I already covered how to read emails via POP3 protocol from my previous blog. If you prefer using IMAP then this article is for you. I'll be sharing the whole project files after the jump. First you need to download the ImapX Library from here. Altho...
Automatically Find And Remove Unused References In Visual Studio 2010 by Fryan's Digital World on Oct 10, 2011Typically developers include references as needed by their project. Sometimes when the project is done, there will be unused references left in the program code. With Reference Assistant installed, you don't have to manually find each unused referenc...
Create Magnifying Lens Using CSS and JQuery by Fryan's Digital World on Sep 6, 2011I was impressed today by a cool css and script trick that creates a magnifying glass over a web page. The script provides magnifying lens effect using a background image and background position animation. The lens follows the mouse pointer position w...
Clean And Format Your Visual Studio 2010 Codes With BatchFormat by Fryan's Digital World on Aug 31, 2011When we are in rush to code a project, sometimes our least priority is to keep our codes clean. We tend to leave behind unused Using directives and unsorted functions and etc. Considering to take care of this unnecessary code at the later stage of th...
Debug Single Thread While Debugging Multi-threaded Applications In Visual Studio 2010 by Fryan's Digital World on Aug 28, 2011With today's world of multi-core computers, it is important to take into consideration the need to design multi-threading applications to maximize multiple core system. Debugging multithreaded projects is not easy because Visual Studio tends to jump...
Backup And Sync Visual Studio 2010 Settings To The Cloud With Pepper by Fryan's Digital World on Aug 27, 2011Visual Studio 2010 IDE can be configured to adapt to developer's preference. This can be done during first run which Visual Studio ask for your preferred environment. You may change the default setting later on. Although you can customize the IDE, th...
Debug Common Errors In Your CSS Code With CSS Lint by Fryan's Digital World on Aug 5, 2011CSS defines the look and format of documents written in markup language such as HTML. Instead of writing style sheets on each web page you have, it is more practical to write all CSS codes in one file and link it to your web pages. With this practice...
Visual Studio 2010 Extension To Highlight All Occurrences Of Selected Word by Fryan's Digital World on Aug 2, 2011When finding keywords in Visual Studio editor, Find & Replace utility is the native tool for developers. This tool is usually enough for basic search tasks but it fell short for finding multiple occurrence of keyword. For such task, you can insta...


