Last updated:
22. July 2001
(Start sub-menu)
User Interface Programming Column
Splitter Controls and Dialog Resizing
(End sub-menu)
// // WaitCurs.h: Declaration and inline implementation // class WaitCursor { public: WaitCursor(); ~WaitCursor(); void Restore(); }; // // Inline functions: // inline WaitCursor::WaitCursor() { ::SetCursor( ::LoadCursor( 0, IDC_WAIT ) ); // or call Restore... } inline void WaitCursor::Restore() { ::SetCursor( ::LoadCursor( 0, IDC_WAIT ) ); } // end of file
(Start bottom menu)
Top •
Home
• Articles
• Book
• Resources
Windows Developer Magazine
• R&D Books
• CMP Books
Amazon.com
• Amazon.co.uk
• Contact Petter Hesselberg
(End bottom menu)