Monday, September 11, 2006
MDB Browser and Editor
Sunday, September 10, 2006
Some Cool Tips for .NET - The Code Project - C# Controls
Wednesday, September 06, 2006
Practical .NET 2 and C#2 Chapter: Collections
Practical .NET 2 and C#2 Chapter: Collections
Preparing for emergencies
Finding Great Developers - Joel on Software
Finding Great Developers - Joel on Software
XML Notepad 2006
I am always looking for tools that I can use to view and edit XML files.
Came across XML Notepad 2006 a Microsoft tool.
And its my new favorite XML editor/viewer.
My favorite feature, the deal clincher, is the fact that it understands SOAP xml files and its FREE.
I used to use XMLDocViewer, but that one only allows viewing of files. This new MS tool allows editing too.
I JUST LOVE IT!
Tuesday, September 05, 2006
Window's Live Writer
This post has been made using Window's new blog posting tool, Window's Live Writer.
And so were the previous two. And it is really good and easy to use. I am hooked.
Interop 101 in .NET
Previously, I had included links to BorisJ's article on interop.
Here is the 3rd installment in that series.
Interop 101 - Part 3 : http://blogs.msdn.com/borisj/archive/2006/09/02/73...
Also, for convenience, here are the links to the previous 2.
Part 1: http://blogs.msdn.com/borisj/archive/2006/07/29/683061.aspx
Part 2: http://blogs.msdn.com/borisj/archive/2006/08/21/711530.aspx
Unresolved external symbol ?.ccto@@$$FYMXXZ
Using Visual Studio 2005 and getting the following error LNK2001: unresolved external symbol ?.cctor@@$$FYMXXZ" (?.cctor@@$$FYMXXZ)
Well its most probably because you have the /ZI flag enabled for the compiler settings. Remove it and then recompile. It most probably will go away.
To remove it go to your managed C++ project settings. Under C++ >> Command Line, remove the /ZI setting from "Additional Options".