problem in visualc++

sahana

sahana

@sahana-S4nL10 Oct 26, 2024
hi to all.
i want to get the caption of my button control during runtime i.e when i execute.can anyone help me with it.

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • uday.bidkar

    uday.bidkar

    @udaybidkar-JNYtYq Mar 7, 2007

    sahana
    hi to all.
    i want to get the caption of my button control during runtime i.e when i execute.can anyone help me with it.
    Use CWnd::GetDlgItem( /*Identifier of the Button control*/) to get CWnd* of the Button window. Call GetWindowText using this pointer to get Captin of the Button.
  • sahana

    sahana

    @sahana-S4nL10 Mar 9, 2007

    thanks a ton uday,
    i now hav a new problem.now what do i do if i want to set the caption name during run time i.e during execution if i click a button i want its caption name to be changed
  • uday.bidkar

    uday.bidkar

    @udaybidkar-JNYtYq Mar 11, 2007

    sahana
    thanks a ton uday,
    i now hav a new problem.now what do i do if i want to set the caption name during run time i.e during execution if i click a button i want its caption name to be changed
    Follow the same procedure but call SetWindowText instead of GetWindowText