看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: Win10, Linux, ...) Win 7 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) VC++ 問題(Question): 最近在使用MFC Tabcontrol,目前按照google的設定已經成功的增加分頁 現在在分頁上想加上combo box作成下拉式選單,但在設定selchange時給予參數 但combo box仍無下拉的數值 設定如下: 1.主頁面下設定 #include "分頁.h" m_Tab1.InsertItem(0, _T("A")); m_Tab1.InsertItem(1, _T("B")); m_Tab1.InsertItem(2, _T("-")); m_Tabcontrol1.Create(IDD_Tab2, &m_Tab1); m_Tabcontrol2.Create(IDD_ABOUTBOX, &m_Tab1); m_Tabcontrol3.Create(IDD_ABOUTBOX, &m_Tab1); m_Tabcontrol1.ShowWindow(SW_SHOW); m_Tabcontrol2.ShowWindow(SW_HIDE); m_Tabcontrol3.ShowWindow(SW_HIDE); m_pmodeless = new Tab2Dlg(this); m_pmodeless->Create(Tab2Dlg::IDD, GetDesktopWindow()); 2.分頁設定 #include "主頁.h" m_bus.AddString(_T("test")); 大致如上所示,想請問有什麼地方少了設定嗎?謝謝 餵入的資料(Input): 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): 程式碼(Code):(請善用置底文網頁, 記得排版) 補充說明(Supplement): -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 211.21.159.187 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1479731196.A.65D.html
jasonwu23: sendmesage 11/22 00:18
TeaEEE: AddString是在OnInitDialog 11/22 08:49
williamsm: 我的分頁沒有oninitial,請問這段是設定在主頁嗎? 11/22 08:56
sosokill: 有完整的code嗎 11/30 23:20