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...


1)How to change a text of a button in runtime?

Answers were Sorted based on User's Feedback



1)How to change a text of a button in runtime?..

Answer / jp

1. Only required to know the Control Resource ID

((CButton*)GetDlgItem(IDOK))->SetWindowText(_T("Hello"));

Is This Answer Correct ?    1 Yes 0 No

1)How to change a text of a button in runtime?..

Answer / ps

1. make a control variable of button with the Cbutton class;
2. where you want to change the text then call only setwindowtext();

in header file;
Cbutton mButton;.
IN RESOURCE.H...
#DEFINE BUTTON_ID 249;// CONTROLL ID NUMBER 249 ANY YOU WNT OR SYSTEM GENRATED.
in cpp file.
'''''''mesage map
ABC::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Control(pDX, BUTTON_ID, mButton);
}
BOOL ABC::OnInitDialog()
{
// IF USER CHANGE ON INIT METHOD THEN CAN DO OR CHANGE IN ANY METHOD WITH THE SAME CLASS
mButton.setwindowText(_T"hello");


}

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More MFC Interview Questions

What is the difference between Extension DLL and Regular DLL?

6 Answers   GE,


How to access document object from view ?

1 Answers  


How we call a dialog in another dialog?

2 Answers  


What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?

5 Answers   Atos Origin,


1)How to change a text of a button in runtime?

2 Answers  


1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions

1 Answers  


What interface must be supported by an ActiveX control?

2 Answers  


Types of DLL's

11 Answers   Invensys,


How can we create thread in MFC framework?

3 Answers  


If application hangs while SendMessage is waiting for the result, how you handle it?

2 Answers  


How WM_PAINT message gets called in MFC,please explain it . a)Who calls the WM_PAINT message? b)When it gets called? c)how it comes to message queue? Please Explain it

8 Answers  


what is the difference between SDI and MDI

15 Answers   CMC, HCL, Siemens,


Categories