摘要:
在编程中经常用到GetCurSel()不知道什么意思总结下:CComboBox::GetCurSelint GetCursor( ) const;返回值:返回组合框中列表框中当前选中的项的下标。如果没有选中项,则返回CB_ERR。说明:本函数用于取得组合框中当前选中的项的下标。CComboBox::SetCurSelint SetCurSel( int nSelect );返回值:调用成功时返回选中的项的下标。如果nSelect大于列表中项的个数,则返回CB_ERR。如果nSelect为-1,则清除当前的选择并返回CB_ERR。参数: nSelect 指定要选中的字符串的下标。如果为-1,则清
阅读全文
posted @ 2011-08-10 20:07
role
阅读(8619)
推荐(0)
编辑
摘要:
保存到表中:UpdateData(true); if(m_name.IsEmpty()) { MessageBox("姓名不能为空。","提示",MB_ICONINFORMATION); return; }else if(m_contact_name.IsEmpty()) { MessageBox("联系人姓名不能为空。","提示",MB_ICONINFORMATION); return; } CString sex,marriage; m_sex.GetLBText(m_sex.GetCurSel(),sex);
阅读全文
posted @ 2011-08-10 19:38
role
阅读(980)
推荐(0)
编辑
摘要:
//添加工具条if (!m_wndtoolbar.CreateEx(this,TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_ALIGN_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS ,CRect(4,4,0,0)) ||!m_wndtoolbar.LoadToolBar(IDR_TOOLBAR)){MessageBox("创建工具栏失败!", "错误", MB_ICONSTOP);return FALSE;}m_wndtoolbar.ShowWindow(SW_SHOW);Repositio
阅读全文
posted @ 2011-08-10 19:33
role
阅读(261)
推荐(0)
编辑
摘要:
工具栏图标的设置代码BOOL CMainFrame::CreateExToolBar(){ CImageList img; CString str; if(!m_wndReBar.Create(this)) { return -1; } if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC)) { return -1; } m_wndToolBar.GetToolBarCtrl().SetBu
阅读全文
posted @ 2011-08-10 17:44
role
阅读(2898)
推荐(0)
编辑