Log in

View Full Version : Building a Mobile Book Catalog


Peter Foot
02-26-2005, 03:00 PM
<div class='os_post_top_link'><a href='http://www.microsoft.com/downloads/details.aspx?FamilyID=4CA43AEC-3149-4AA7-ACFB-80EC53BB7E6C&displaylang=en' target='_blank'>http://www.microsoft.com/downloads/...&displaylang=en</a><br /><br /></div>Microsoft have published a set of exercises to demostrate building a book catalogue application for Pocket PC using the .NET Compact Framework. Once you've downloaded and installed the package you'll find a number of exercise projects added to your start menu. However you'll have to locate the accompanying article manually which can be found at:-<br /><i>C:\Program Files\Windows Mobile Developer Samples\2-2--5 Building a Mobile Book Catalog with Visual Studio .NET 2003\NetCFBookCatalog.doc</i><br />Exercise 3 describes using the Platform APIs to display the wait cursor, or spinning wheel, however for that specific scenario you don't actually need to use Platform Invoke as you can simply use the Cursor object:-<br />Cursor.Current = Cursors.WaitCursor<br />And then hide it with:-<br />Cursor.Current = Cursors.Default