Main menu
Forums
C++ Tutorial
::Introduction
::Basics of C++ ::Control structures ::Compound Data Types ::C style functions in C++ ::Object Oriented Programming ::The Standard Template Library (STL) |
www.cpp4u.com > C++ Tutorials > Visual C++ TutorialsVisual C++ TutorialsVisual C++ TutorialsWeb-pages If statements - http://www.cprogramming.com/tutorial/lesson2.html
If statements, and some boolean information Loops in C++ - http://www.cprogramming.com/tutorial/lesson3.html
All you want to know about Loops Functions - http://www.cprogramming.com/tutorial/lesson4.html
Functions...all about them, making and using the critters Switch case - http://www.cprogramming.com/tutorial/lesson5.html
About the switch case structure Pointers - http://www.cprogramming.com/tutorial/lesson6.html
Using pointers to access memory locations Structures - http://www.cprogramming.com/tutorial/lesson7.html
Structures, all about 'em, and how to use 'em Arrays - http://www.cprogramming.com/tutorial/lesson8.html
All about arrays Strings - http://www.cprogramming.com/tutorial/lesson9.html
About character arrays (strings) File I/O - http://www.cprogramming.com/tutorial/lesson10.html
About file i/o Typecasting - http://www.cprogramming.com/tutorial/lesson11.html
Typecasting: making variables look like another data-type Inline functions - http://www.cprogramming.com/tutorial/lesson13.html
More information on functions(non-prototyed and inline) Command line arguments - http://www.cprogramming.com/tutorial/lesson14.html
How to accept command line arguments (AND checking file existence) Recursion - http://www.cprogramming.com/tutorial/lesson16.html
Recursion--a function calling itself Variable argument lists - http://www.cprogramming.com/tutorial/lesson17.html
Functions accepting a variable number of arguments Round windows - http://brigsoft.com/edu/roundwindow/RoundWindow.htm
MFC, Round Windows and Highlight Buttons. By Alex Rest. windows programming - http://www.cpp-home.com/tutorial.php?160_1
This tutorial will introduce you to the C++ programming in Windows environment. Winsock tutorial - http://www.hal-pc.org/~johnnie2/winsock.html
One way to connect to programs or read from files on Internet sites is by using sockets, and Winsock is the protocol that's already built into the Windows API. Johnnie's Winsock Tutorial reviews basic structs, functions, and concepts vital to the beginning Winsock programmer. Visual C++ and OpenGL - http://devcentral.iftech.com/articles/C++/openGL/default.php
A good introduction to using OpenGL. Command Button - http://www.functionx.com/visualc/controls/button.htm
A Button is a Windows control used to initiate an action. From the user’s standpoint, a button is useful when clicked, in which case the user positions the mouse on it and presses one of the mouse’s buttons.
There are various kinds of buttons. The most common and regularly used is a rectangular object that the user can easily recognize. In some programming environments, this classic type is called a Command Button. There are other controls that can serve as click controls and initiate the same behavior as if a button were clicked.
From the programmer’s standpoint, a button needs a host, such as a dialog box. To add a button to a dialog box, click it on the Toolbox and click in the desired location on the dialog box.
By default, when you visually create a dialog box, Microsoft Visual C++ adds two buttons: OK and Cancel Check Boxes - http://www.functionx.com/visualc/controls/checkbox.htm
A check box is a Windows control that allows the user to set or change the value of an item as true or false. The control appears as a small square o. When this empty square is clicked, it gets marked by a check symbol S. These two states control the check box as checked o or unchecked T.
Like the radio button, the check box doesn't indicate what it is used for. Therefore, it is usually accompanied by a label that displays an explicit and useful string. The label can be positioned on either part of the square box, depending on the programmer who implemented it.
Unlike the radio buttons that implement a mutual-exclusive choice, a check box can appear by itself or in a group. When a check box appears in a group with other similar controls, it assumes a completely independent behavior and it must be implemented as its own entity. This means that clicking a check box has no influence on the other controls. MFC Combo Boxes - http://www.functionx.com/visualc/controls/combobox.htm
A combo box is a Windows control that holds a list of items. Each item can be a null-terminated string or it can be made of a bitmap and a string. A combo box shares a lot of characteristics with a list but there are more variances of a combo box.
As far as looks are concerned, there are two types of combo boxes. The most regularly used combo box is made of two sections. The main part is an edit box. On the right of the edit box, there is a button with a down pointing arrow. Dialog Boxes - http://www.functionx.com/visualc/controls/dialogbox.htm
A dialog box is a rectangular window whose main role is to host or hold other Windows controls. For this reason, a dialog box is referred to as a container. It is the primary interface of user interaction with the computer. By itself, a dialog box means nothing. The controls it hosts accomplish the role of dialog between the user and the machine. MFC Forms - http://www.functionx.com/visualc/controls/forms.htm
A form is an object used to host, hold, or carry other controls. By itself, a form means nothing. The controls positioned on it give it usefulness.
In the Microsoft Foundation Classes library, a form is a type of dialog box without borders. The rest of the functionality is mostly the same as a dialog box. While a dialog box is usually closed using either the system Close button or a user-created button positioned on it, such as OK or Cancel, because a form is part of a bigger application, it should use another means to be closed. In fact, the application to which the form belongs should define when and how the form would be closed.
Visual C++ Developer Center - http://msdn.microsoft.com/visualc/
Product information, technical resources, samples and downloads, news and reviews. New Visual C++ MFC Codes - http://pagead2.googlesyndication.com/pagead/iclk?adurl=http://www.ucancode.net&sa=l&ai=BlsLKinIAQ6GXNc2GapqzmPsOycaxCP-W5KEBwI23AdD3BxACGAIg49r0ASgKQJoUSIY5UImhjZ8CoAG1pe3-A7IBIHd3dy5mcmVlcHJvZ3JhbW1p
Professional Flow/Diagram Component with MFC Source Code & Visio look! UNICODE Conversions in Visual C++ - http://devcentral.iftech.com/articles/C++/unicode/default.php
This tutorial shows how to use UNICODE in VC++ applications to handle international character sets.
Frame Window with Menu - http://www.cpp4u.com/files/MTS/visual_C++/VCPP_06.zip
"A Visual C++ Program to Create and Show a Frame Window with Menu using MFC Library..Author:Muhammad Tahir Shahzad
URL www.wol.net.pk/mtshome"
|
Links
C++ creator
www.cplusplus.com www.cppreference.com www.cprogramming.com www.bloodshed.net gcc.gnu.org cplus.about.com Top Categories
|