Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / MFC

Using Button Controls in an Application

Rate me:
Please Sign up or sign in to vote.
4.53/5 (89 votes)
22 Aug 2000CPOL 656.7K   8.2K   337   114
How to get a button control wired-in and working

Introduction

This tutorial could well be the simplest Windows program you could ever write. All you need to understand this tutorial is the basics of Windows messaging. This tutorial is about the CButton class, and how to get a simple button working.

This tutorial simply takes input for two numbers and depending on what button you click, does the math, i.e., if you enter 1 and 2, then click on 'Plus' the answer will be 3. Pretty basic.

To create this program, first we need to get the framework laid out. Now 99.9% of the time, you will be using buttons via a dialog box so that is where we will start. Open up the AppWizard and create a new project titled ButtonDemo. Just create a basic dialog box without any document / view architecture.

Image 1

Then click on the ResourceView tab in the 'Workspace' window. Proceed to edit the dialog box IDD_BUTTONDEMO_DLG. It will already contain the Buttons 'Ok' and 'Cancel'. Delete the 'TODO :' message and the 'Cancel' button so we can get to work.

Just drag n' drop the buttons needed, in this example 'Plus' and 'Minus'. Then select and right click to edit their properties. The MFC keeps track of these buttons by their unique ID, a macro located in the "Resource.h" file. For code clarity, change the name of the ID to ID_BUTTON_ADD and modify the caption of the button.

Image 2

Next, let's add the Edit boxes to house the values to be added or subtracted, do this in a very similar manner to the way you added the buttons. Just drag and drop them in and then modify their ID. We will need an Edit box for the left and right side of the equation as well as one to house the answer. Just for clarity to the end user, check the 'disable' property of the last Edit box. Since we won't directly be able to specify the answer, we will also add a Static control for the equals sign. Just drop one in and then change the caption.

Image 3

Now that our buttons are in place, we need to wire them into our application. We do this via the class wizard. (Control + W) Click on the Member Variables tab and proceed to add the variables m_nX, m_nY, and m_nAnswer. All integers; these will hold the values inputted from the Edit controls.

Image 4

Then click on the Message Maps tab. And add a new function for the object ID ID_BUTTON_ADD and ID_BUTTON_SUBTRACT message BN_CLICK. This creates a function which is called whenever that button is clicked once, denoted by OnButtonAdd and OnButtonSubtract.

Image 5

Now that we have created our buttons, this is all the code we need to write to get this program working. It is fairly self explanatory: what we did was create two functions to be called whenever the respective buttons were pressed. The UpdateData (BOOL) functions are used to manage the data in the Edit boxes of the dialog. UpdataData (TRUE), 'updates' the member variables linked to the Edit boxes to whatever is the current value. UpdataData (FALSE), updates the Edit box to whatever our variable is.

C++
void CButtonDemoDlg::OnButtonAdd() 
{
	UpdateData (TRUE);
	m_nAnswer = m_nX + m_nY;
	UpdateData (FALSE);
}

void CButtonDemoDlg::OnButtonSubtract() 
{
	UpdateData (TRUE);
	m_nAnswer = m_nX - m_nY;
	UpdateData (FALSE);
}

That is all we need to do to implement a simple button.

History

  • 22nd August, 2000: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Connecting 2 resources using 'Button' control Pin
yathirajkulal29-Dec-10 19:17
yathirajkulal29-Dec-10 19:17 
GeneralNeed help Pin
desk11185-Aug-07 21:51
desk11185-Aug-07 21:51 
GeneralChange the color and/or 2 section boxes in 1 button Pin
Davenish10-Apr-07 10:40
Davenish10-Apr-07 10:40 
GeneralRe: Change the color and/or 2 section boxes in 1 button Pin
yule7722-Feb-11 14:10
yule7722-Feb-11 14:10 
Generalaccessing the tree control Pin
sharatchandra.D8-Mar-07 1:46
sharatchandra.D8-Mar-07 1:46 
Questionadd/remove opreation is impossible coz the code element 'CCalcview' is read only Pin
sumit.mishra31-Oct-06 4:47
sumit.mishra31-Oct-06 4:47 
GeneralButton and focus Pin
ArielR25-Sep-06 5:02
ArielR25-Sep-06 5:02 
GeneralRe: Button and focus Pin
yathirajkulal29-Dec-10 21:42
yathirajkulal29-Dec-10 21:42 
Generalscientific calculator Pin
jalpari30-Apr-06 2:39
jalpari30-Apr-06 2:39 
Questioncan we create the default start value for edit box Pin
Member 23309054-Oct-05 17:57
Member 23309054-Oct-05 17:57 
AnswerRe: can we create the default start value for edit box Pin
cristitomi17-Mar-07 4:58
cristitomi17-Mar-07 4:58 
Generalplease help me to find the mistake of my programe!!!Thank you Pin
linda_zjj28-Aug-05 23:25
linda_zjj28-Aug-05 23:25 
QuestionHow to set the button for wizard application? Pin
death_8320-Jul-05 16:10
death_8320-Jul-05 16:10 
Generalunderlines and focus rectangle disappear Pin
Ridgeley Yu2-May-05 17:21
Ridgeley Yu2-May-05 17:21 
GeneralRe: underlines and focus rectangle disappear Pin
Ridgeley Yu2-May-05 17:56
Ridgeley Yu2-May-05 17:56 
GeneralCreate trial version Pin
rajpalmanish24-Apr-05 2:48
rajpalmanish24-Apr-05 2:48 
Generaltransform a bitmap button to other symbol Pin
faridah_hani20-Mar-05 15:10
faridah_hani20-Mar-05 15:10 
GeneralWin32 Programming Pin
radumihai23-Jun-04 22:37
radumihai23-Jun-04 22:37 
GeneralChanging default button Pin
Chulips6-May-04 9:30
Chulips6-May-04 9:30 
GeneralRe: Changing default button Pin
cristitomi18-Mar-07 0:38
cristitomi18-Mar-07 0:38 
AnswerRe: Changing default button Pin
finalman19-Mar-08 18:36
finalman19-Mar-08 18:36 
GeneralRadio button message processing Pin
Guruhema20-Jan-04 20:51
Guruhema20-Jan-04 20:51 
GeneralRe: Radio button message processing Pin
Member 82043224-Mar-04 18:10
Member 82043224-Mar-04 18:10 
GeneralRe: Radio button message processing Pin
zlataneskic22-Mar-07 23:50
zlataneskic22-Mar-07 23:50 
QuestionHow it operate... Pin
Member 6488283-Dec-03 18:59
Member 6488283-Dec-03 18:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.