Contents tagged with framework
-
Microsoft Outlook OLE automation to bulk adjust email display name
I've just written code bellow to adjust email display name from my contacts on Personal Folders > Contacts > Plaxo
-
Microsoft Patterns & Practices Enterprise Library 1.0 - Where to download from?
It can be downloaded here: Microsoft Patterns & Practices Enterprise Library 1.0
-
Body art with a VB flavour
-
Dissecting a C# Application: Inside SharpDevelop
Dissecting a C# Application: Inside SharpDevelop:
-
How to subscribe to MSN Spaces RSS feeds
Probably somebody else has already posted about it, but I'll write about it here anyway, so the word spreads faster.
To subscribe to MSN Spaces RSS feeds, just enter the the HTML URL, plus "/feed.rss". As an example, suppose you want to add Shiju Varghese MSN space to your blogroll in your RSS aggregator. To accomplish this, you'll have to subscribe to Shiju Varghese RSS feed -
Keeping Secrets Secret: Steganography with .NET
Just read Keeping Secrets Secret: Steganography with .NET, an interesting article from DevX
-
{New versions = bugs = errors;}
I have a VB6 program, which uses Microsoft XML 4 and which was raising a GPF error every time I run it. Changed the program to use Microsoft XML 3 and it stopped raising the error. Lesson learnt: New versions = bugs = errors;
-
An attention-getting resume
JY found the most original resume I've ever seen. I immediately forwarded it around the company. If he ends up getting hired, I'll let you know. But it sure did get attention!
-
Bin, Oct and Hex
Visual Basic 6 has the Hex function, but no Bin or Oct, so I wrote the silly functions bellow, just to have a bit of fun.
Option Explicit Public Function Bin(ByVal lngNumber As Long) As String Do While lngNumber > 0 Bin = (lngNumber Mod 2) & Bin lngNumber = lngNumber \ 2 Loop If (Len(Bin) Mod 8) <> 0 Then Bin = String$(8 - (Len(Bin) Mod 8), "0") & Bin End If End Function Public Function Oct(ByVal lngNumber As Long) As String Do While lngNumber > 0 Oct = (lngNumber Mod 8) & Oct lngNumber = lngNumber \ 8 Loop If (Len(Oct) Mod 4) <> 0 Then Oct = String$(4 - (Len(Oct) Mod 4), "0") & Oct End If End Function
-
Cool GUI for editing parameters in visual studio - vote for it!
Mitch Denny proposes a very cool idea for popping up in-place GUI when you need to edit a formatted string or other parameter in source code. He has posted his idea up on the Ladybug site; I’ve voted for it, and you should too!