Software Books
Related Subjects:
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Used price: $1.79

Good Book for the Intermediate PC UserReview Date: 2006-08-19
Pretty GoodReview Date: 2004-04-27
Perfect Book for Beginners learners !Review Date: 2003-11-09
Simple, small, but pack with a punchReview Date: 2003-10-03
Great book, teaches Flash the way it should be taughtReview Date: 2003-11-20

Used price: $15.00

Become A TextMate Power User Today!Review Date: 2007-05-25
'TextMate: Power Editing for the Mac' by James Gray is a perfect companion manual for all TextMate users that want to lift the hood off of this power app and get to the nuts and bolts. If you develop on a Macintosh on a daily basis for work or fun and want to learn more about what you can do to make your life easier, pick up this book and you won't be disappointed. Written well and coming in at ~200 pages, there are 12 chapters which will teach you goodies in TextMate like how to create and use Macros, using Find & Replace to quickly edit text, and much, much more!!
The Mac is a great tool for developing code and TextMate is a great app for writing it, make yourself a more efficient coder today!!
***** HIGHLY RECOMMENDED
Great book on a fantastic productReview Date: 2007-05-12
Do you have the power?Review Date: 2007-09-24
The font size in the Pragmatic Programmers books is a little larger than say the O'Reilly books, which I personally like. Easy on the eyes. Screenshots are clearly printed.
Readability:
I found the reading style conversational and easy to follow. Of course, with this type of book which includes many keyboard short-cuts you really need to be at your computer and using them to commit them to memory. Even a reading of the book will give you insights into the power available at your finger tips with Textmate.
Practicality:
If you spend any amount of time in Textmate, this is really a no-brainer. This book will help you be more productive and get more out of your chosen text editing tool.
Audience:
The book does not list an intended target audience, but if you use Textmate at all I would say you have a bulls-eye right on you.
Overall:
If you use Textmate get this book.
Get a Mac, get TextMate, get this book.Review Date: 2007-08-04
The funny thing is, to people who have never used TextMate for more than a few minutes the above phrase sounds like an exaggeration. It's not. (As long as you can accept the analogy of "really awesome code running on a Mac" = "robot ninjas"...)
Anyway, this book targets a pretty specific market: 1) Humans, 2) who own Macs, 3) and use TextMate. I'm here to tell you that, if you're human you should have a Mac; and if you have a Mac you should buy TextMate; and if you have TextMate you should buy this book. So there, now it covers everyone.
As with all of the Pragmatic Programmer books, I found this book to be concise without missing anything important. You may be thinking, "200 pages about a text editor!? That's crazy talk!" But you would be wrong, my friend. The amount of functionality built into TextMate is incredible, but I didn't even know the half of it until I started reading this book!
I don't want to give away the ending, but:
Three of my favorite simple features I didn't know about until I read this book:
- Pressing [ESC] to complete the word you're typing.
- The built in TODO list functionality (so crucial!!)
- [Cmd-Enter] to add a new line below this one and go to the beginning of it.
Things I wouldn't have been able to do without TextMate and this book:
- Edit some of my Bundles to make TextMate work even more how *I* like
- Complete an after-hours Web Site project *way* under time and budget
Seriously. TextMate is the One True Editor for Mac (it makes me loath using any other editor on any platform) and this is a great book for learning how to *really* take hold of its power.
The Power of TextmateReview Date: 2007-05-28
The Pragmatic Programmers' book, TextMate Power Editing for the Mac is a thorough introduction to TextMate. Edward Gray II has written a very accessible book, that covers the product very well.
The first third of the book is devoted to the basics - things you do every day in your text editor. The second third of the book dives into the details of some really sweet features of TextMate that you'll find yourself using all the time: bundles, snippets, macros and UNIX shell commands.
TextMate ships with over thirty 'bundles'. Each bundle is a directory of related files that provide additional functionality to TextMate. Let's say you're working on an HTML file. The HTML bundle will help you with loads of things related to your document: validate the syntax of the document, open the document in the default browser, refresh the document in the current browser session, insert open/close tags for the current word, strip all HTML tags from the document - just to name a few. Each bundle provides functionality that applies not only to the syntax of the language you're currently working with, but repetitive tasks that would apply as well.
As I mentioned, a couple dozen bundles ship with TextMate and many more are available for free download from various websites. You can even create your own bundles to extend the product in ways that only you can imagine. Here are a few of the bundles that ship with TextMate: Blogging, CSS, HTML, Java, Markdown, Objective-C, Python, Rails, Ruby, SQL, Subversion, Text, Textile, Xcode and XML. Bundles provide you with lots of help editing files and performing related tasks.
Snippets are a smart completion mechanism that go way beyond the simple concept of 'finish this word'. For example, if you are editing a Ruby file and you type array_object.ea followed by the TAB key (where 'array_object' is an arbitrary Array object), the snippet feature will automatically fill in the skeleton of the 'each' iterator, including the opening and closing curly braces, the text '|e|' with the letter 'e' highlighted. You simply type the name of the variable you want to represent the next element (or simply leave it as it is), hit the TAB key again and the cursor will be placed between the closing '|' character and the closing '}' character, ready for you to type in an expression. Very cool. This same trick works for dozens of different scenarios in your Ruby code. And that's just the snippets that apply to Ruby code. There are snippets that apply to a large number of file types.
You've probably seen macros in other editors and TextMate's macro facility works as you might expect: you start recording a macro, perform some actions and save the macro. TextMate saves the macros as XML files, so it's a snap to edit a macro after recording if you need to tweak it a bit.
The ability to fire off UNIX shell commands from within TextMate gives you another powerful tool to use while editing files. You can fire off one-liner shell commands by simply pressing the ^R key on a line containing a shell command. You can also use shell commands to act on all or part of the current document.
For the advanced TextMate user, the tail end of the book shows you how to create your own language syntax for use in TextMate, including how to describe the grammar of the language in terms TextMate will understand. So, if you program in some far out funky language that TextMate doesn't support out of the box, you can add the language grammar to TextMate and program away!
Overall, I found this book extremely useful and easy to read. TextMate ships with an excellent help system that will answer many of your questions. The TextMate Power Editing for the Mac book will take you beyond the built-in help and give you an in-depth guide for this great Mac application.


Awesome bookReview Date: 2007-12-08
Most of the other software engineering books I read are too academic and detached from the industry.
The case studies provided in this book are things I can totally relate to as a software developer. Question/Answer sections are great.
Overall this book is very well written, it is a true masterpiece.
OutstandingReview Date: 2006-06-08
It's important to note also that there are many case studies in this book from Bernstein's distinguished career at Bell Labs, and they are extremely valuable in learning what "works" and what should be avoided. Software engineering as a discipline doesn't learn from its mistakes as well as other engineering fields, but this book takes 35 years of hard-earned experience and the latest research by Bernstein, Boehm, Parnas, and others, and condenses it into what I consider the best software engineering textbook on the market. This is a must-read for any computer science practitioner who wants to consider himself a true engineer and a professional.
A great course text and practitioner reference guide!Review Date: 2006-04-08
Great Case Study Variety and DepthReview Date: 2006-03-29
It's about time! Signed, a former software engineer on the Space ShuttleReview Date: 2006-04-12
That may be about to be changed! Larry Bernstein's new text states on page 32 ".. none of these [principles of sound organizations] will work unless our profession recognizes the next core element in the evolution of software processes as a fundamental principle. Software trustworthiness is the next major area in which academic and industry must focus -- both for national security reasons as well as to ensure that the U.S. software industry maintains its leadership. The three attributes of software reliability, security and safety comprise trustworthiness."
I totally agree with the belief about where we should focus our attention in coming years, but not for the reasons that Larry cites. Let me explain:
* Having worked as a software/knowledge engineer on the Space Shuttle program for Rockwell International for four years, including the maiden flight of Discovery within a few months of my hire date in 1984, I am a very firm believer that the trustworthiness of the software in the shuttle and all the support effort was a gold standard at the time. I was also a full-time professor of CS concurrently, so could bring such issues to all of my classes. Although I have given up my dream of going to the moon, hatched when my small team of high school students fired off rockets in a farmer's field prior to Sputnik, I still hope to make it to the international space station, so a trustworthy system is not only of academic interest! In the last 20+ years, the ubiquity of computing, particularly embedded systems in all modes of transportation, makes such a standard a MUST, not just "nice to have" in our cars, trucks, planes, etc. When a team of Ford software engineers showed up in my office 10+ years ago, asking for help in developing safe software systems for next generation side impact sensors, I could not brush off their concerns! Obviously, software systems pervade the lives of many of the 6.6 billion people residing on this planet today, not just the billion or so who access the Internet. It is irresponsible, not to mention a direct violation of codes of ethics for computing and software engineering, NOT to develop such trustworthy systems.
* I cannot agree with Larry's rationale about the leadership of the U.S. in software. Trustworthiness of software systems knows no national boundaries! Other engineering artifacts do not know such artificial boundaries - do we want the bridges and high rise buildings of Europe, Asia, the Middle East, South America, Africa, etc. to be less safe, reliable and secure than those in the United States? I think not, if for not other reason than millions of our citizens travel to and live in those countries every day. Clearly, the lives of people across the world are just as valuable as those fortunate enough to live in our 50 states. The state-of-the-art in engineering methods is being advanced on a world-wide basis - why should we think software engineering education is somehow an exception? I would hope that this new text would be published in many languages and used by students and practitioners worldwide. I had first met Professor Bernstein on November 30, 2000 during my sabbatical to set up an International Software Engineering University Consortium (www.iseuc.org). So Larry clearly knows of my penchant for the world-wide importance of software engineering ☺!
Why do I think this new text is different from earlier ones and would recommend strongly that all current faculty and practitioners consider it carefully, especially for an introduction? The rationale includes the following. The text:
1. Focuses on the increasingly vital role that trustworthy software systems will play in the lives of current and future generations. Consequently, it is quite easy to engage or "hook" students in an introductory software engineering course about the importance of the topic - they see the impact of the lack of such systems on a weekly, if not daily, basis. Many of them will be able to share personal and professional experiences. The marvelous column by Neumann in every copy of ACM's SIGSOFT Software Engineering News provides ample examples, in any case.
2. Is cleverly written with excellent and realistic case studies with real questions and answers
3. Draws on the demonstrated expertise of the primary author when he was the CTO for Bell Labs
4. Truly demonstrates the rationale for the role of quantitative software engineering methods throughout the development life-cycle, beginning on page 4!
Reliabilty = e-k?t, where k is a normalizing constant, ? is complexity/(effectiveness x
staffing) and t is the time the software executes from its launch.
5. Emphasizes the "why" as well as the "how"
6. Includes excerpts from student teams related to the growing use of Real Projects for Real Client Courses - RPRCC-in software engineering and other courses
7. Covers most of the topics in a traditionally-structured software engineering text, but does so in a more contemporary and intuitive way. Some of the topics in other texts that wind up at the end, hence often not covered, are main-line chapters in the Bernstein text*. The newest edition of Sommerville's text does indeed have a 20-page chapter 3 on "Critical Systems" and a complete 120 page Part 4 on the same topic, but this is certainly an anomaly among current texts. The Bernstein text emphasizes trustworthiness as a continuing theme throughout, with the continual use of quantitative measures - witness the large number of "Magic Number" boxes for empirical results and heuristics contained in virtually each chapter. I admit that there would be a "learning curve" for most of us, but hey, aren't we supposed to be paragons for "life-long learning" that we espouse for our students?
8. Has fewer pages than virtually every other text. This is a real advantage. Students (and faculty) feel they have a "prayer" of being able to use the material in one course!
9. Has nice on-line support site.
10. And, finally, Larry will go to great personal lengths to support his text ☺!
A couple of possible sources of improvement for the second edition would include the following:
1. Include Failure Mode Effect Analysis (FMEA) as a major component when designing critical systems. This is a common engineering tool that was used in the design and testing of the Space Shuttle Main Engines (SSME) over the last 30 years.
2. How can the vital concept covered in the text be applied to the massive task of rendering trustworthy the extant base of millions of software systems? The text does a superb job for developing such systems, but can trustworthiness be "bolted on" existing systems? I doubt it, but cannot see an easy answer here.
3. A friendlier website for both instructors and students would be helpful, ala those for other software engineering textbooks
*Topics in the text
Part I. Getting Started
1. Think Like an Engineer - Especially for Software
2. People, Product, Process, Project - The Big Four
Part II. Ethics and Professionalism
3. Software Requirements
4. Prototyping
5. Architecture
6. Estimation, Planning, and Investment
7. Design for Trustworthiness
Part III. Taking the Measure of the System
8. Identifying and Managing Risk
9. Human Factors in Software Engineering
10. Implementation Details
11. Testing and Configuration Management
12. The Final Project: By Students, For Students

Used price: $2.57

Easy reading, excellent materialReview Date: 2000-04-27
It includes many ideas and suggestions that you can implement immediately and see true performance gains. If you've ever wondered, "What RAID configuration would be best for my new application server?" or "Which performance monitor counter is really the best to use to monitor this or that?", then this book is definitely for you.
Let's hope Curt produces a similar book of the same quality for Windows 2000. This book sits right beside Mastering Windows NT Server by Mark Minasi on my desk, and between the two of these and Technet, one doesn't need much more to support an enterprise Windows NT 4.0 environment.
Essential info for NT ProfessionalsReview Date: 2000-01-06
This book "rocks" !Review Date: 1999-04-08
Essential Resource for NT AdminsReview Date: 1999-01-15
Easy reading, excellent materialReview Date: 2000-04-27
It includes many ideas and suggestions that you can implement immediately and see true performance gains. If you've ever wondered, "What RAID configuration would be best for my new application server?" or "Which perfmon counter should I use to monitor this or that?", then this book is definitely for you.
Let's hope Curt produces a similar book of the same quality for Windows 2000. This book sits right beside Mastering Windows NT Server by Mark Minasin on my desk, and between the two of these and Technet, one doesn't need much more to support an enterprise Windows NT 4.0 environment.

Used price: $0.94

A Great Book for learning CReview Date: 2004-03-08
Good book to get started !!!Review Date: 2004-02-05
A book worth digesting !!!
Good bookReview Date: 2001-02-02
Great beginning bookReview Date: 2000-04-06
Excellent for explaining syntaxReview Date: 2000-02-21

Used price: $21.25

Awesome bookReview Date: 2007-01-24
Outstanding. Absolutely every web developer and website owner needs to own this.Review Date: 2007-07-17
The fact that it leaves you wanting more is a compliment to its quality. Even though it is bulky, I wished it had covered certain areas in more detail.
One small criticism relates to the javascript examples. The discussion of events refers to techniques that are questionable in terms of robustness and re-usability, issues that, to be fair, the author does point out. [Background; search for "addEvent considered harmful" in your favorite search engine.] Yet no definitive solution is given, and the reader is left hanging. More serious is the very poor quality javascript code sample given for the cssjs() utility function, which is poorly designed (needs to be repackaged, should be a class), is inefficient, and is fragile as it contains (at least) two immediately apparent critical bugs.
But such small gripes should on no account not put you off buying this text. The overall verdict, "Outstanding."
Anyway, the numerous authors are to be congratulated. Indeed, given the size of the field and the rapid pace of developments, a second "part II - advanced" volume would be a very good idea indeed.
A Strong BookReview Date: 2007-03-23
The only reasons I do not give it 5 stars is many items within the book are redundant (I think due to the great number of authors (11!), and perhaps they wanted the book to serve as a reference also), and because the presentation is generally dry. Good information, but not coffee-table reading.
Still in all, as a web developer I would highly reccomend this book to any other developer weather you just want a little understanding of accessibility, or a big dose.
Must-Have Book for Accessible Technology Review Date: 2006-12-05
The book is an overview of accessible best practices in web technology, and the legal landscape it inhabits. It was compiled with several target audiences in mind.
Certainly, it is intended for developers - newcomers as well as veterans. This is the group that most needs to understand the technology, and unfortunately, seems to "get it" the least.
Another audience is the managers and administrators; that group that should be most adverse to risk and whose responsibility is to keep their government and corporate employers out of the courts and headlines (like those that have embarrassed [Target retailer]). Covered in some detail are the ADA section 504 and section 508 requirements, and in lesser detail international laws.
The technical information is very current. There is a chapter on accessible JavaScript (most would consider that term an oxymoron) even though it has only recently seen coverage in articles and blogs online. Likewise, there is good information on making Flash content accessible.
A book assembled as a compendium of contributions begs to be updated frequently. The next release, for example, could add much needed chapters on AJAX and Web 2.0, podcasting, and learning management technologies. Regardless, all practitioners of accessibility will find this book valuable.
Web Accessibility - It's all in one place!Review Date: 2006-12-22
perfect reference for any site development team. Everything you've
wanted to know about Accessibility and the Web is here in a single text.
Each member of the team will find necessary information and practical
solutions in one or more of the thorough discussions here. For the
designer/developer who works alone, Web Accessibility: Web Standards and
Regulatory Compliance is the all-in-one reference with the most
up-to-date information and techniques. Thanks to the clear organization,
two tables of contents, and index, all information is easy to find as
well.
For those of us who like background and theory, the book contains lively
discussions of accessibility standards, of the intent of the standards,
and suggestions for using the standards. For me, though, the heart of
the text is in the practical discussions and how-to guides in order to
improve accessibility of every common web technology -- from PDF to
Flash, from javascript to data forms. In addition, we finds clear
descriptions of the law and web accessibility. Importantly, these
discussions are international in scope.
The collective experience of the authors of this text is impressive.
These are the experts to whom we've turned to assist us with accessible
design and development for years. In this text, we have a collection of
the most knowledgeable voices on the subject of accessibility, who speak from a real-world
perspective. They share freely their best techniques, so that we can
create the "best possible experience for the greatest number of
visitors."
For me, Web Accessibility: Web Standards and Regularory Compliance is a
must-have.

Used price: $48.13

I like this bookReview Date: 2004-02-02
Historical perspective + technical detail = useful bookReview Date: 2004-01-21
Takes intermediate developers to the next levelReview Date: 2004-06-16
The historical material in this book is not fluff if you approach it with the intent to gain a fuller understanding of the major components of the Internet and web. This material is rich with details about why the core web technologies developed and evolved, including design choices the pioneers made in the face of constraints. In a subtle way this part of the book is a primer on design and architecture.
What makes this book so valuable is the non-trivial application that brings this book alive. This is a refreshing change from other books that use thinly contrived snippets of code or trivial applications. The code for this application can be downloaded from the book's supporting web site, which also contains errata (thus far there are only two entries), and articles that are valuable resources with or without this book.
Overall this is one of the better books on web application design and development, and one that dives into code and technical details.
Great Crossover BookReview Date: 2005-09-02
good summaryReview Date: 2004-08-13


Artful, Creative and WittyReview Date: 2008-06-22
Wonderful book! Funny, and yet very thoughtfulReview Date: 2008-06-15
Whether you ever wondered about meaning of it all, or you want to read something light amusing, or want to see places like Seattle, San Diego, and Nashville from the eyes of the writer, or vicariously live the life of a
student at University of California, this book is for you!
The author, purportedly an Artificial Imagination computer program simulating a life/career journey through the Hi Tech and yet very scenic world of California and Washington (Settle) is witty still though down to earth and funny! The book is written in a very conversational style, as if you are reading a letter from a close friend!!
Good book, nice clean humor, makes you crack up!Review Date: 2008-06-15
And so many nice photographs. I felt I was traveling with the author, no, I was him, feeling his ambitions, his surprise, excitement and pain. And what a brave soul! He (yes, despite its claims to have been written by an AI program, this book is written by a loving, feeling, breathing human for sure!)--He is able to maintain his sense of humor even as he moves from one place to another, faces one set back after another! He always comes back!
Wow! What a story!!
Great book, transcends genres to combine humor, photo-travelogue, a moving love story, memoirs, philosophy and a touch of Sci-FiReview Date: 2008-06-15
Even though it's obviously written by a Technologist, the book is very human. It is primarily about the immigrant experience, but Kalpanik is extremely observant and has an eye to look for the unusual, notice what stands out and build humorous side of people, places and his own life.
Wonderful! I am specially moved by his bitter-sweet love story at the beginning.
Very engaging, light and entertaining!Review Date: 2008-06-19

Used price: $25.33

Another Great BookReview Date: 1999-04-04
4 a clear, easy to read, logical C++ intro, read these booksReview Date: 1999-03-02
Steve, you done good!
Great book because it's readableReview Date: 1999-04-06
A Fantastic Book & Wonderful Method of Truly Learning C++Review Date: 1999-10-02
The sequel to a unique and powerful method of learning C++Review Date: 1999-05-17

Used price: $0.98

Very helpfulReview Date: 2001-10-16
This book was very well written, and seemed to address exactly what I needed. I found the sections on CGI and COM very helpful on the Internet side (part of our project is a ColdFusion page using a COM object), and the comparison of various database approaches like ODBC vs. DAO very helpful. The sample programs comparing the different database technologies was a great idea.
My only complaints would be that the index was a bit hard to use, and there was no CD provided. But, I was able to locate the source code for download on the authors FTP site.
I recommend this book for anyone familiar with programming, that needs to get working quickly with some new specific aspect, like Internet or database.
Extremely helpfulReview Date: 2001-04-10
Then, looking at the other chapters, which is rich in MFC examples, I decided I had made an excellent purchase. If you are an MFC programmer at any level, I highly recommend this book.
All around good dealReview Date: 2001-01-22
The sample programs, an FTP program, an emailer, a link lister, and others, were all very neatly written, and the source code described them in good detail. The socket class described in the book as a replacement for the MFC classes, was an amazing piece of work, and discussed each function in a clear understandable manner. I got everything I wanted out of this section, without having to purchase multiple books.
I'm glad to say that I now feel comfortable with several new technologies (to me), and have some excellent sample source code to help me understand it all. Increasing your knowledge in as many possible directions is important in this field, and this book helped me.
Very informativeReview Date: 2000-12-21
I especially liked the chapter on database access, and the fact that there are 3 programs that are identifical in every way except how ODBC, DAO, and ADO work with the data. That gave a great chance to compare the various methods. The introduction on database access was good for a beginner, but also had some interesting observations and hints for the more advanced.
The section on the Windows Installer, and creating installation programs is also a topic I hardly see anywhere, so having it all in one nice package was great.
If I had to nitpick, maybe there could have been more on Active Directory for Win2000. But, Win2000 was covered enough to get you started, and the PocketPC programming was covered in a bit more detail.
Summary: I liked it alot. It is right on my shelf now with the Kruglinski and Petzold books.
The most practical book on Windows programming ever.Review Date: 2001-05-22
That's what this refreshingly straightforward and intelligently laid out book, written by Keogh&Giannini, is. It is a phrase book for Windows programmers. The most common scenarios are discussed, with full code given. You won't find obscure situations such as those found in Petzold's oversized Windows Programming book like how to draw an elliptic circle in a window! What you will find in this concise book is useful code such as creating an application where the main window is a dialog box used for data entry through edit boxes. (This very common and fundamental of situations is not addressed in Petzold's book).
Each example is explained sufficiently enough for any programmer to build on or tailor to their needs. And the core explanations are embedded within the code so you won't have to laboriously cross reference with the main body of the text. How refreshingly intelligent is that?!
Whats more, for those new to the Visual C++ environment, step by step instructions on how to use it to enter the code and build it are given in list form e.g. 1) Select File/New menu choice 2) select the Win32 Application project type, and so forth. Most Windows programming books often make the assumption that you know your way around the environment.
And you will find each example written in both MFC and Windows API! Name me a book that has done that?!
The problem with so many Windows programming books on the market including Charles Petzolds and Joseph Newcomers is that they are basically dictionaries, grammar references of the Windows language. They are inaccessible. If these books were to be useful to anyone it would only be to a seasoned Windows programmer who already has a feel for the language, but definitely not for a beginner. These books are not practically organized and don't fit the needs of today's developers. For example, discussions on essential topics such as dialog boxes are left until chapter 11 in Petzold's classic; in Keogh&Giannini's book, it is discussed in chapter 3. And Petzold's book misses a number important programming issues. These are not my own criticisms by the way. These criticisms are those of Dr Dobbs Journal, arguably the most technical journal in computing, certainly more so than those that Petzold decided to quote on the back cover.
In Keogh&Giannini's book , there are bonus chapters on database programming (ODBC), internet programming, Windows CE and 2000 programming, threads, ActiveX controls and lots more.
I am giving this book 5 stars because it is head and shoulders above the rest in terms of accessibility, completeness, conciseness, modern refreshing style, and its use of novel approaches to speed up learning for the impatient novice Windows programmer.
Related Subjects:
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
Overall, I recommend this book as a good step by step guide. Just be sure you are really ready to take on such a powerful and often complicated multimedia program before you spend the cash!