Saturday, December 23, 2006

Wednesday, December 13, 2006

Replacing array elments with single command

string[] MyNames = { "America", "Chicago", "Illinois"};

MyNames = String.Join("|", MyNames ).Replace("a", "z").Split('|');

Tuesday, July 25, 2006

Font embedding for the Web

Font embedding has been a feature of Microsoft applications such as Word and PowerPoint® for several years. It allows the fonts used in the creation of a document to travel with that document, ensuring that a user sees documents exactly as the designer intended them to be seen. Font embedding technology is built into Microsoft Internet Explorer (version 4 and above) bringing embedded fonts to the Web.

for more help visit http://www.microsoft.com/typography/web/embedding/default.htm