Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Calvin Hsia's WebLog
thoughts from a professional developer
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
64bit
C++
CSharp
Debugging
History
LINQ
Mesh
Miscellaneous
Pictures
Programming
SmartPhone
Testing
VB
Vista
Visual FoxPro
Visual Studio
Web
Windows API
WPF
News
Archives
September 2008 (1)
August 2008 (1)
July 2008 (3)
June 2008 (2)
May 2008 (2)
April 2008 (2)
March 2008 (2)
February 2008 (2)
January 2008 (2)
December 2007 (3)
November 2007 (8)
October 2007 (6)
September 2007 (4)
August 2007 (9)
July 2007 (2)
June 2007 (2)
May 2007 (11)
April 2007 (5)
March 2007 (2)
February 2007 (2)
January 2007 (1)
December 2006 (2)
November 2006 (1)
October 2006 (4)
September 2006 (6)
August 2006 (10)
July 2006 (13)
June 2006 (11)
May 2006 (7)
April 2006 (8)
March 2006 (14)
February 2006 (5)
January 2006 (21)
December 2005 (9)
November 2005 (19)
October 2005 (20)
September 2005 (12)
August 2005 (23)
July 2005 (12)
June 2005 (8)
May 2005 (7)
April 2005 (4)
March 2005 (1)
February 2005 (2)
January 2005 (13)
December 2004 (9)
November 2004 (4)
October 2004 (10)
September 2004 (4)
August 2004 (8)
July 2004 (1)
June 2004 (10)
Browse by Tags
All Tags
»
C++
»
Programming
(RSS)
CSharp
Debugging
VB
Visual FoxPro
Windows API
Monday, July 28, 2008 2:34 PM
Make your code more maintainable: The evils of the Return statement
What does it mean to make code more maintainable? Certainly obfuscated code is hard to understand, by definition. A big part of maintainability is making it easier for others to read and understand what the code is doing. Your code may have been working
Posted by
Calvin_Hsia
|
6 Comments
Filed under:
Visual FoxPro
,
Programming
,
VB
,
C++
,
Debugging
,
CSharp
Wednesday, November 09, 2005 10:00 PM
Windows Security and how it affects running generated code
Here I described how VFP generates executable code and runs it for early and late binding COM clients and implementing COM interfaces. However, there is an important issue with generating and running executable code in the same process. A computer has
Posted by
Calvin_Hsia
|
6 Comments
Filed under:
Visual FoxPro
,
Programming
,
C++
,
Windows API
,
Debugging
Wednesday, June 30, 2004 4:36 PM
What is a C0000005 crash?
In my blog about Dr. Watson I talked about product crashes. What is an example of a crash? How destructive is it? Here’s a simple example. MyFunction takes a string parameter and calculates its length MyFunction ( char * StringParam) { int nlen;
Posted by
Calvin_Hsia
|
26 Comments
Filed under:
Programming
,
C++
,
Windows API
,
Debugging