Click here to Skip to main content
Licence CPOL
First Posted 22 Aug 2000
Views 560,500
Downloads 7,180
Bookmarked 333 times

Using Button Controls in an Application

By | 22 Aug 2000 | Article
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.

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.

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.

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.

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.

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.

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)

About the Author

Chris Smith



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberwipin (Vipin Arora)18:05 19 Apr '12  
GeneralInstructions Pinmembermojens10:54 3 Jun '09  
Generaltest PinmemberMerlin Rose21:23 6 May '09  
GeneralRe: test PinmemberMerlin Rose21:24 6 May '09  
GeneralMy vote of 1 PinmemberRam Jawahar Pandey0:34 12 Jan '09  
GeneralRe: My vote of 1 Pinmemberyathirajkulal19:11 29 Dec '10  
Generalabout the application of the button PinmemberMOHYUSUF1:23 21 Aug '08  
GeneralRe: about the application of the button Pinmemberwoguolyg@126.com17:00 11 Nov '08  
GeneralRe: about the application of the button Pinmemberyathirajkulal19:07 29 Dec '10  
Generalabout the button application PinmemberMOHYUSUF1:01 21 Aug '08  
GeneralRe: about the button application Pinmemberyathirajkulal18:58 29 Dec '10  
Generalbutton demo beginner PinmemberMOHYUSUF12:01 20 Aug '08  
GeneralRe: button demo beginner Pinmemberyathirajkulal19:08 29 Dec '10  
Generaltest [modified] Pinmemberlfq090615:33 2 Jun '08  
GeneralRe: test Pinmemberyathirajkulal19:13 29 Dec '10  
GeneralGetting an Error while Adding member variable [modified] Pinmembervijay_k18:59 24 Apr '08  
GeneralRe: Getting an Error while Adding member variable Pinmembernimeshmca18:37 27 Jan '10  
GeneralRe: Getting an Error while Adding member variable Pinmembernimeshmca18:41 27 Jan '10  
RantRe: Getting an Error while Adding member variable Pinmembernimeshmca18:59 27 Jan '10  
QuestionConnecting 2 resources using 'Button' control PinmemberSamolsharma5:42 10 Nov '07  
AnswerRe: Connecting 2 resources using 'Button' control Pinmemberyathirajkulal19:17 29 Dec '10  
GeneralNeed help Pinmemberdesk111821:51 5 Aug '07  
GeneralChange the color and/or 2 section boxes in 1 button PinmemberDavenish10:40 10 Apr '07  
GeneralRe: Change the color and/or 2 section boxes in 1 button Pinmemberyule7714:10 22 Feb '11  
Generalaccessing the tree control PinmemberMember #38765191:46 8 Mar '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 23 Aug 2000
Article Copyright 2000 by Chris Smith
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid