Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How you create a button dynamically?

Answers were Sorted based on User's Feedback



How you create a button dynamically?..

Answer / venkataramakrishna

1. Create a Object from CButton control. CButton m_ctlButton
2.
m_ctlButton.Create("OK",ES_CHILD|ES_VISIBLE,CRect(0,0,100,100),CWnd*
pParentWnd,MB_OK);

with this we can create the button by dynamically.

Is This Answer Correct ?    12 Yes 3 No

How you create a button dynamically?..

Answer / 106743013743

CButton myButton1, myButton2, myButton3, myButton4;

// Create a push button.
myButton1.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON,
CRect(10,10,100,30), pParentWnd, 1);

// Create a radio button.
myButton2.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_RADIOBUTTON,
CRect(10,40,100,70), pParentWnd, 2);

// Create an auto 3-state button.
myButton3.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_AUTO3STATE,
CRect(10,70,100,100), pParentWnd, 3);

// Create an auto check box.
myButton4.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_AUTOCHECKBOX,
CRect(10,100,100,130), pParentWnd, 4);

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More MFC Interview Questions

Explain StretchBlt and BitBlt

1 Answers  


how does conditionally close the Dialog Box ?

2 Answers   Infotech,


How to setup a timer?

3 Answers   IBM,


How can server communicate with more than one client

2 Answers   Invensys,


What is the base class for most MFC classes?

7 Answers   CMC, Siemens,


Explain about MDI and CMultiDocTemplate ?

2 Answers  


What is the size of class

18 Answers   Aircom,


In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?

2 Answers   Wipro,


What is the difference between ASSERT and VERIFY?

2 Answers  


What are the special requirements for dialog box resources used in a form view?

2 Answers  


List out the basic features of MFC.

4 Answers   Mphasis,


What is the use of CObject::Dump function ?

4 Answers  


Categories