English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I want to learn to make desktop applications. Can anyone recommend a book or tutorials where I can learn from examples?
I don't want a book with C# syntax. I want one with practical examples on how to build GUI and add code to save and open data to a file or use a database.

2006-07-13 04:01:40 · 4 answers · asked by Miss M 2 in Computers & Internet Programming & Design

4 answers

http://www.about.com

and then go to the channels and computers and then look for programming


do i get 10 pts

2006-07-13 04:08:39 · answer #1 · answered by Anonymous · 1 0

Erik Brown's book "Windows Forms in Action : Second Edition of Windows Forms Programming with C#" is excellent.

"The book is a tutorial, leading the reader through Windows application development using C# and Visual Studio .NET. It illustrates how the classes in the .NET Framework interact in a fully functional application."

The book takes you through the process of building a single, robust application.

2006-07-13 06:42:08 · answer #2 · answered by TJ 6 · 0 0

Before changing ur program into C++ u should correct it! ur program doesn't work! u haven't use "i" at all and instead u have used "n" which is not declared anywhere! Your program should ask the user to enter desired "n" & use "i" as a counter. This is the right program: #include void main() { int i=1,sum=0,n; printf("please enter your number:"); scanf("%d",&n); while (i<=n) { sum=sum+i; i++; } printf("sum=%d",sum); }

2016-03-27 03:45:49 · answer #3 · answered by Anonymous · 0 0

there's these amazing tutorials that i learnt c# in. hope they help you!

2006-07-13 04:27:34 · answer #4 · answered by Webspot.co.uk 3 · 0 0

fedest.com, questions and answers