Join Amazon Prime and ship Two-Day for free and Overnight for $3.99. Already a member? Sign in.

 

or
Sign in to turn on 1-Click ordering.
 
 
More Buying Choices
39 used & new from $4.25

Have one to sell? Sell yours here
 
   
Microsoft .NET Compact Framework Kick Start
 
 
Tell the Publisher!
I’d like to read this book on Kindle

Don’t have a Kindle? Get yours here.
 
  

Microsoft .NET Compact Framework Kick Start (Paperback)

by Erik Rubin (Author), Ronnie Yates (Author)
Key Phrases: default keyset, new keyset, public key exchange key, Compact Framework, Visual Studio, Visual Basic (more...)
3.6 out of 5 stars See all reviews (10 customer reviews)

List Price: $39.99
Price: $30.39 & this item ships for FREE with Super Saver Shipping. Details
You Save: $9.60 (24%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.

Want it delivered Wednesday, July 22? Choose One-Day Shipping at checkout. Details
26 new from $21.88 13 used from $4.25

Frequently Bought Together

Microsoft .NET Compact Framework Kick Start + Microsoft® .NET Compact Framework (Core Reference) + Professional Microsoft Smartphone Programming
Price For All Three: $101.23

Show availability and shipping details


Customers Who Bought This Item Also Bought

Professional Microsoft Smartphone Programming

Professional Microsoft Smartphone Programming

by Baijian Yang
4.2 out of 5 stars (4)  $31.49
MCPD Self-Paced Training Kit (Exam 70-547): Designing and Developing Web-Based Applications Using the Microsoft .NET Framework

MCPD Self-Paced Training Kit (Exam 70-547): Designing and Developing Web-Based Applications Using the Microsoft .NET Framework

by Mike Snell
3.1 out of 5 stars (11)  $44.09
Microsoft® Mobile Development Handbook

Microsoft® Mobile Development Handbook

by Andy Wigley
4.9 out of 5 stars (12)  $44.09
.NET Compact Framework Programming with C# (Microsoft .NET Development Series)

.NET Compact Framework Programming with C# (Microsoft .NET Development Series)

by Paul Yao
4.6 out of 5 stars (7)  $47.24
CLR via C#, Second Edition (Pro Developer)

CLR via C#, Second Edition (Pro Developer)

by Jeffrey Richter
4.8 out of 5 stars (46)  $37.79
Explore similar items

Editorial Reviews

Product Description

The primary goal of .NET Compact Framework is to bring the familiar experience of developing .NET applications for the desktop to the device world. Of the approximately six million Microsoft desktop developers in the world, it is estimated that perhaps two hundred thousand will turn their attention to the device world using the enabling technology of the .NET Compact Framework.To facilitate the goal of showing readers how to develop applications for the .NET Compact Framework, the book contains in-depth treatment in the following topic areas: Windows Forms and Threading, Network Programming, ADO.NET Dataset, XML Serialization, SQL CE, Web Services, and performance management. Each concept is accompanied with a sample application that illustrates its implementation on the .NET Compact Framework. For the convenience of the reader, each sample application will be offered in both C# and Visual Basic .NET. Developers can use this source code as a springboard for creating their own device side database applications.



About the Author

Erik Rubin and Ronnie Yates are both uniquely qualified to write this book as they are on the .NET Compact Framework team at Microsoft Corporation and their experiences include work on a number of integrated technologies such as XML, Web Services and ADO.NET.


Product Details

  • Paperback: 600 pages
  • Publisher: Sams (September 7, 2003)
  • Language: English
  • ISBN-10: 0672325705
  • ISBN-13: 978-0672325700
  • Product Dimensions: 9.1 x 7.4 x 1.3 inches
  • Shipping Weight: 2.2 pounds (View shipping rates and policies)
  • Average Customer Review: 3.6 out of 5 stars See all reviews (10 customer reviews)
  • Amazon.com Sales Rank: #919,798 in Books (See Bestsellers in Books)

Inside This Book (learn more)


Books on Related Topics (learn more)
 
 

What Do Customers Ultimately Buy After Viewing This Item?

Microsoft .NET Compact Framework Kick Start
81% buy the item featured on this page:
Microsoft .NET Compact Framework Kick Start 3.6 out of 5 stars (10)
$30.39
Microsoft® Mobile Development Handbook
19% buy
Microsoft® Mobile Development Handbook 4.9 out of 5 stars (12)
$44.09

Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
Check the boxes next to the tags you consider relevant or enter your own tags in the field below.

Your tags: Add your first tag
 
Help others find this product — tag it for Amazon search
No one has tagged this product for Amazon search yet. Why not be the first to suggest a search for which it should appear?

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

 

Customer Reviews

10 Reviews
5 star:
 (4)
4 star:
 (2)
3 star:
 (1)
2 star:
 (2)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
3.6 out of 5 stars (10 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
16 of 17 people found the following review helpful:
2.0 out of 5 stars 2 and a half stars for C# readers, December 18, 2003
By Daniel Moth (Seattle, WA) - See all my reviews
(REAL NAME)   
There are some good things in this book but overall it is unimpressive - in my opinion of course.

It starts off well by describing how to setup the IDE and the device, including a unique description of how to target unsupported devices. It then goes on to the mandatory introduction to the .NETcf, including detailed information on the JIT compilers and the CLR. Chapter 3 is all about the GUI, with consideration of Pocket PC and Windows CE devices. Most info is available online and in the help, but it is well presented.

Chapter 4 on threading is disappointing. It incorrectly states that there are only a few threads maintained by the ThreadPool; it does not even mention the Threading.Timer, ManualResetEvent and AutoResetEvent classes. The examples provided are unrealistic and serve only for demonstrating the syntax; the same comment applies to all examples throughout the book.

Chapter 5 briefly overviews connectivity with TCP, UDP, HTTP and IR. As with other areas of the book, there is a lot of breadth but no depth. How can a discussion on programming sockets ignore asynchronous communication?

The following 2 chapters are about ADO.NET and Sqlce; nothing spectacular here, but no real omissions either. These are followed by 4 chapters on XML. XML in relation to the dataset and the whole XML namespace are pretty well covered here.

Interoping with native code is essential to any .NETcf developer, given the compactness of the framework. Chapter 12 attempts to cover that and it generally provides a good introduction to it. However, there is no mention of the dumpbin utility or the extern keyword or a short description on writing an eVC dll. A serious chapter on the topic would have covered these, as well as the technique of subclassing .NET controls with the MessageWindow (which itself is not described at all). Finally, the authors describe how to use unsafe C# for marshalling deep/nested structures, whereas there is an alternative safe way of achieving the same result (which also means it can be used from VB.NET).

Chapter 13 on Reflection is good. I have to say, though, that when describing a technology it is useful to tell the reader where the benefit is, as well as mention scenarios of particular interest. So, for example, when talking about reflection, the authors could have explained how to use it to compensate for the lack of the Enum.Parse method. The same principle applies to other areas of the book.

I cannot criticise the contents of chapter 14 on cryptography, because the topic is mostly left untouched by other .NETcf sources. Chapter 15 on performance is great. I would be urging you to get access to this chapter one way or another, were it not for a recent excellent article on MSDN covering the same topic very well. Chapter 16 on deployment is good, and the final chapter on the smartphone will not tell you much (5-6 pages long) but it will tell you more than any other printed source will (at the moment).

<VB rant>
Examples are in both VB and C#. I applaud publishers who do this rather than release two books with language being the only difference, or even worst focus on one language only. However, when this approach is followed, every effort should be made for the examples to be identical except for the syntax. This cannot be said for this book, where a poor translation of the C# examples into VB was attempted. Suffice to say that some of that code will not even compile, and the code that does clearly has Option Strict turned off. Every effort has been made to keep the layout of the VB code different to the C# one; the authors think arrays in VB.NET start at 1, that the only way to get the type of a class is to instantiate one first, that escape characters are needed in VB strings, that arrays or objects cannot be created on the same line, that integers cannot be declared inline to a for loop, that UInt32s can be used in VB and so on and so forth. Hence 2.5 stars for C# readers and only 2 for VB.NET readers.
</VB rant>

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
1 of 1 people found the following review helpful:
5.0 out of 5 stars Great for getting rolling on the .NET CF, November 5, 2004
By QuarterCoder (Fargo, ND, USA) - See all my reviews
I bought this book along with the Definitive Guide when I was assigned to do some C# work on both the regular framework and the .NET CF. I was doing mostly JavaScript for the past two years and this book really helped me get moving with C# in general. This book helped me get comfortable with getting connected to the device, understanding some of the general capabilities of the framework, and stuff like that. It paid for itself by getting me past the "hello world" stage very quickly. I recommend the Definitive Guide for when you really want to drill down but this book is great for a quick rampup, with good quick step-by-steps to do a lot of the common things programmers care about. It saved me much more time than the cost of the book, so I'm very happy with it.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
3 of 4 people found the following review helpful:
3.0 out of 5 stars Cautious Note, December 12, 2003
By A Customer
The book introduction states that the sample applications require installation of Visual Studio Enterprise edition and will not work with Visual Studio Professional.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
Ad
 
Most Recent Customer Reviews

4.0 out of 5 stars Has issues but still is a good book
I have to agree with the other posters that stated that there were errors in the book. I found where a great many of the VB examples were just copied directly from the C# with... Read more
Published on April 28, 2005 by Michael Simpson

5.0 out of 5 stars Complete and detailed explanations
Information that is hard to find in other books can be find here. I buy a lot of computer books and I know when one stands out. This book paid for itself the first day.
Published on October 30, 2004 by Arne Garvander

2.0 out of 5 stars covers basics glosses over SQL CE
This book gives a fair basic overview of the .net CF. Examples in both VB and C# are helpful to those making the switch. Read more
Published on June 13, 2004 by Computer guy

1.0 out of 5 stars Get ready for missing sample files & incorrect instruction
I am currently trying one of the examples in this book. However, files that should have been included in the download are missing and some of the instructions are just FLAT... Read more
Published on March 26, 2004

5.0 out of 5 stars Excellent coverage of key features
Excellent coverage of key features, well-written with a great, easy-to-read style. Highly recommended to anyone interested in .NET and/or CE... Read more
Published on December 17, 2003 by Jason Payne

5.0 out of 5 stars Get it. Resourceful views on real issues.. well done.
I've been developing several WinCE prototypes for the NetPad for a few weeks.. and this helped me immensely. Also bought Tiffany's book on sqlCE dev w/ the CF... Read more
Published on October 21, 2003 by bob davis

4.0 out of 5 stars Good reference - the one to buy currently
I was converting a warehouse management app from eVB to VB.Net and was struggling to find examples online and only having the Core Reference book (which kinda blows in some... Read more
Published on September 26, 2003 by Christopher T. Owens

Only search this product's reviews



Customer Discussions

 Beta (What's this?)
New! See all customer communities, and bookmark your communities to keep track of them.
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
  [Cancel]


Active discussions in related forums
   


Product Information from the Amapedia Community

Beta (What's this?)



Look for Similar Items by Category


Value Center Deals

Home Improvement Value Center
Let spectacular savings of up to 50% in the Home Improvement Value Center help motivate you to organize the closet, garage, and everything else.

Shop the Value Center

 

Big Savings in Books

Bargain Books
Find great titles at fantastic prices in our Bargain Books Store.
 

Buy Three Books, Get a Fourth Free

4-for-3 Books
Order any four eligible books under $10 and get the lowest-price book free in our 4-for-3 Books Store. See more details.
 

Shine a Light

Shop for Lamps
Brighten your space by adding an extra table or floor lamp. Browse the Lighting & Electrical Store now.

Shop for indoor lighting

 
Ad

 

Feedback

If you need help or have a question for Customer Service, contact us.
 Would you like to update product info or give feedback on images?
Is there any other feedback you would like to provide?

Your comments can help make our site better for everyone.


Where's My Stuff?

Shipping & Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue shopping: Top Sellers
Free
Free by Chris Anderson
Paranoia
Paranoia by Joseph Finder
The Adventures of Sherlock Holmes
The Adventures of Sherlock Holmes by Arthur Conan, Sir, 1859-1930 Doyle
Glenn Beck's Common Sense

Conditions of Use | Privacy Notice © 1996-2009, Amazon.com, Inc. or its affiliates