Sign In
Calvin Hsia's WebLog
thoughts from a professional developer
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
64bit
C++
CSharp
Debugging
FunGames
History
LINQ
Memory
Mesh
Miscellaneous
Pictures
Programming
SmartPhone
Testing
VB
Vista
Visual FoxPro
Visual Studio
Web
Windows API
WPF
Archive
Archives
May 2012
(2)
March 2012
(1)
February 2012
(1)
January 2012
(1)
December 2011
(1)
November 2011
(1)
October 2011
(1)
September 2011
(1)
August 2011
(1)
July 2011
(1)
June 2011
(1)
May 2011
(1)
April 2011
(1)
March 2011
(1)
February 2011
(1)
January 2011
(1)
December 2010
(2)
November 2010
(1)
October 2010
(1)
September 2010
(1)
August 2010
(1)
July 2010
(1)
June 2010
(1)
May 2010
(1)
April 2010
(1)
March 2010
(2)
February 2010
(1)
January 2010
(1)
December 2009
(1)
November 2009
(1)
October 2009
(1)
September 2009
(1)
August 2009
(1)
July 2009
(1)
June 2009
(1)
May 2009
(1)
April 2009
(1)
March 2009
(2)
February 2009
(1)
January 2009
(2)
December 2008
(1)
November 2008
(1)
October 2008
(1)
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)
May, 2007
MSDN Blogs
>
Calvin Hsia's WebLog
>
May, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Calvin Hsia's WebLog
Help->About->System Info doesn't work on Vista
Posted
over 5 years ago
by
CalvinH
3
Comments
A customer (thanks Grady!) reported that choosing Help->About->System Info on Vista causes a MessageBox to display “Microsoft System Info cannot be found or run.” Why is that? Simple investigation: run Regedit on WinXP and Vista to inspect...
Calvin Hsia's WebLog
SQL Select puzzle to count failures and totals for each item
Posted
over 5 years ago
by
CalvinH
19
Comments
Suppose I have a table of 2 columns. One is the name of an item, the other a value indicating Failure or Success. Can I create a single SQL statement to get a result with 3 columns: Name, # of Total occurrences, # of Failed occurrences ? ...
Calvin Hsia's WebLog
The VB version of the Flip Task Bar for Vista Desktop Window Manager
Posted
over 5 years ago
by
CalvinH
4
Comments
In this post: Create your own Flip Task Bar with live thumbnails using Vista Desktop Window Manager DWM , I showed Fox code on creating your own Flip Task bar Here is the VB.Net version that does the same thing… File->New->Project->Visual...
Calvin Hsia's WebLog
Write Fox code in Visual Studio that interacts with your VB.Net code
Posted
over 5 years ago
by
CalvinH
1
Comments
Run the Fox code in Allowing Optional parameters in your COM objects (or the one in Blogs get 300 hits per hour: Visual FoxPro can count. ) to create a versatile Fox server called T1.DLL. You can use that server in VS to execute Fox code. The VB...
Calvin Hsia's WebLog
Allowing Optional parameters in your COM objects
Posted
over 5 years ago
by
CalvinH
3
Comments
It’s simple to create a VFP object that can be used within other applications. I show how useful it is in Blogs get 300 hits per hour: Visual FoxPro can count. That sample builds the T1.C1 object that uses methods with multiple parameters. T1.C1 is...
Calvin Hsia's WebLog
How to schedule your computer to run tasks automatically
Posted
over 5 years ago
by
CalvinH
7
Comments
Our building will have a power failure at a particular time. You may want your computer to stay on til just before the power goes out due to various reasons: It may be a web or file server serving other clients around the world. You may want...
Calvin Hsia's WebLog
What is Vista Aero?
Posted
over 5 years ago
by
CalvinH
3
Comments
I received a question regarding some of my recent posts on Vista : Forgive my ignorance, but where is Vista Aero. I cannot find it in Vista Ultimate nor have I found it on the MS web pages I’m sorry: I should have been more clear. Vista...
Calvin Hsia's WebLog
Create your own Flip Task Bar with live thumbnails using Vista Desktop Window Manager DWM
Posted
over 5 years ago
by
CalvinH
4
Comments
The sample below uses Desktop Window Manager under Windows Vista with Aero to get dynamic live thumbnails of running applications. If a movie is playing in Windows Media Player, it will play in the thumbnail too! EnumChildWindows or EnumWindows...
Calvin Hsia's WebLog
Vista Aero DWM seems to optimize out GDI paint calls
Posted
over 5 years ago
by
CalvinH
7
Comments
In this post: Foxpro Menu items, combo boxes not refreshing selected item under Aero in Vista I describe a problem in Foxpro where menu and list items that are supposed to be non-selected aren’t painted correctly. I described a workaround: call the GdiSetBatchLimit...
Calvin Hsia's WebLog
Fun with Vista Aero using the DwmExtendFrameIntoClientArea
Posted
over 5 years ago
by
CalvinH
2
Comments
You can have a little fun with Vista Aero using the DwmExtendFrameIntoClientArea function. This will cause the VFP border to paint the glass effect around the fox border DECLARE integer DwmExtendFrameIntoClientArea IN dwmapi integer hWnd ...
Calvin Hsia's WebLog
Windows Vista Aero BorderStyle Paint problem as non Administrator
Posted
over 5 years ago
by
CalvinH
9
Comments
Above is an image of an inner form (from the C++ project below) before and after I dragged it a little bit up and left to obscure the title bar, then back to the original position. You can see the title, icon, close/minimize buttons were not painted correctly...
Page 1 of 1 (11 items)