Teach Yourself Visual C++ 5 in 21 Days

Teach Yourself Visual C++ 5 in 21 Days
Author: Ori Gurewich
Publisher: Sams Publishing
Total Pages: 836
Release: 1997
Genre: Computers
ISBN: 9780672310140

Sams Teach Yourself Visual C++ in 21 Days, Fourth Edition,is your key to unlocking the power of Visual C++ for creating applications. Using the proven Sams Teach Yourself in 21 Days format, you'll be guided through all of the concepts associated with Visual C++. At the end of 21 days, you'll be well on your way to writing applications from scratch with OOP source code. With Sams Teach Yourself Visual C++ in 21 Days, Fourth Edition, you will: explore ActiveX controls and the Component Gallery; understand the essential principles of designing and developing programs in Visual C++; use the Visual C++ tools to create applications quickly; write successful, professional applications; and create your own ActiveX(TM) Controls.

Teach Yourself Excel Programming with Visual Basic for Applications in 21 Days

Teach Yourself Excel Programming with Visual Basic for Applications in 21 Days
Author: Matthew Harris
Publisher: Sams
Total Pages: 996
Release: 1996
Genre: Computers
ISBN: 9780672307829

This work covers the fundamental aspects of Visual Basic and teaches novice programmers how to design, create, and debug macro programs written in the VBA programming language. It teaches techniques to add functionality to existing applications such as Microsoft Excel and Microsoft Access. Contains specific, practical examples of how to write VBA program code, including a complete VBA application.

Sams Teach Yourself Game Programming with Visual Basic in 21 Days

Sams Teach Yourself Game Programming with Visual Basic in 21 Days
Author: Clayton Walnum
Publisher: Sams Publishing
Total Pages: 0
Release: 2001
Genre: Computer games
ISBN: 9780672319877

"Sams Teach Yourself Game Programming with Visual Basic in 21 Days" teaches the reader the art of game programming from the ground up. The reader is assumed to have basic programming knowledge that he wishes to apply to the creation of basic games. Upon completion of the book readers will have learned to build eight games including card games, puzzles, and strategy games, each focusing on a specific task and building the reader's knowledge and skill level. The final week is a culmination of the skills learned in the first two weeks where the reader builds a complete game incorporating sound, animation, etc.

Sams Teach Yourself Visual C++ .Net in 21 Days

Sams Teach Yourself Visual C++ .Net in 21 Days
Author: Davis Howard Chapman
Publisher: Sams Publishing
Total Pages: 802
Release: 2002
Genre: Computers
ISBN: 9780672321979

This book emphasizes using VC++ tools and wizards to generate code. Code examples are augmented with C++ language sidebars. Readers who need a refresher on the language or want to go further "under the hood" will have a context, while those who don't can easily skip that coverage. The revision includes more information throughout on Microsoft Foundation Classes (MFC).

Teach Yourself Visual Basic 5 in 21 Days

Teach Yourself Visual Basic 5 in 21 Days
Author: Nathan Gurewich
Publisher:
Total Pages: 844
Release: 1997
Genre: BASIC (Computer program language)
ISBN:

Write successful, professional-quality programs using Visual Basic; add music, voice, and graphics to your applications; find out how to write your own dynamic link library (DLL); learn to use sprite controls and DirectDraw to affect animation; and create your own ActiveX controls.

Sams Teach Yourself C++ in One Hour a Day

Sams Teach Yourself C++ in One Hour a Day
Author: Jesse Liberty
Publisher: Sams Publishing
Total Pages: 0
Release: 2009
Genre: C++ (Computer program language)
ISBN: 9780672329418

Updated and reworked to trim down the material into shorter, more focused one-hour lessons, this book contains numerous examples of syntax and detailed analysis of code to provide solid instruction for beginning programmers.

Mastering Visual C++ 6

Mastering Visual C++ 6
Author: Michael J. Young
Publisher:
Total Pages: 0
Release: 1998
Genre: C (Computer program language)
ISBN: 9780782122732

A one-stop reference for C++ programmers (beginners through experts) who want to learn Microsoft's powerful 32-bit Visual C++ X development environment. The book's tutorial "framework" provides a complete introduction to Win32 programming architecture (MFC, COM, etc.).

Visual Basic 2015 in 24 Hours, Sams Teach Yourself

Visual Basic 2015 in 24 Hours, Sams Teach Yourself
Author: James Foxall
Publisher: Sams Publishing
Total Pages: 1077
Release: 2015-08-01
Genre: Computers
ISBN: 0134191862

In just 24 sessions of one hour or less, you’ll learn how to build complete, reliable, and modern Windows applications with Microsoft® Visual Basic® 2015. Using a straightforward, step-by-step approach, each lesson builds on what you’ve already learned, giving you a strong foundation for success with every aspect of VB 2015 development. Notes present interesting pieces of information. Tips offer advice or teach an easier way to do something. Cautions advise you about potential problems and help you steer clear of disaster. Learn How To Master VB 2015 by building a complete feature-rich application Navigate VB 2015 and discover its new shortcuts Work with objects, collections, and events Build attractive, highly-functional user interfaces Make the most of forms, controls, modules, and procedures Efficiently store data and program databases Make decisions in code Use powerful object-oriented techniques Work with graphics and text files Manipulate filesystems and the Registry Add email support Create efficient modules and reusable procedures Interact effectively with users Write code to preview and print documents Debug with VB 2015’s improved breakpoint features Distribute your software Download all examples and source code presented in this book from informit.com/title/9780672337451 as they become available. Who Should Read This Book Those who have little or no programming experience or who might be picking up Visual Basic as a second language. Bug Alert Description: Changing the startup form's name in a VB WinForms app does not update the "Startup form" #4517 Explanation: In the latest Visual Basic update on GitHub, Microsoft accidentally introduced a significant bug that you should be aware of. In the Visual Basic project properties dialog on one of the tabs (Application), is a drop down box for selecting the "startup object". This can be either a Main method or a System.Windows.Forms instance (or System.Windows.Window for WPF). When you do a rename on a form (say from the code editor in source or from the solution explorer) currently set as the startup form the rename doesn't cascade to the startup object project property cause the project to enter an invalid state where the user must now manually reset this project property from the now nonexistent Form to the new name. This is a huge annoyance. The fix for the bug (until Microsoft addresses) can be found here: http://www.jamesfo