Showing related tags and posts accross the entire site.
-
After creating this article , i realized that i can use a new utility in my toolbox. A Font Viewer. I don't want to download a new spyware so decided to code a simple one, something that i could use from time to time whenever i have the need to view a font before placing it on my Photoshop design...
-
This is a really basic stuff that alot of developers tend to forget(just like me :D) [C# VERSION] using System; using System.Collections.Generic; using System.Text; using System.Drawing.Text; using System.Drawing; namespace KeithRull.MachineFonts { class Program { static void Main( string [] args) {...
-
After reviewing my first example .. i realized that doing reflection is not the easy way to do get the known color collection(thanks to Chris Vega who pointed to me the Enum called KnownColor which basically contains .NET known colors). Somebody also told me that the demo would be nicer if the colors...
-
I was browsing dotnet.org.za today when i stumbled into an interesting problem that Derek Adkins posted on his blog. The problem was about redirecting users to a page to a new blank window(_blank) instead of using the same window to display the redirected page. I don't know the full detail about...