图书销售管理系统 第3页

图书销售管理系统 第3页
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
CMyView::CMyView()
 : CRecordView(CMyView::IDD)
{
 //{{AFX_DATA_INIT(CMyView)
 m_pSet = NULL;
 //}}AFX_DATA_INIT
 // TODO: add construction code here

}
CMyView::~CMyView()
{
}
// CMyView message handlers
//增加记录按钮代码
void CMyView::OnButtonaddnew()
{
 // TODO: Add your control notification handler code here
 m_pSet->AddNew();
 UpdateData(FALSE);
}
//删除记录按钮代码
void CMyView::OnButtondeldte()
{
  沈  阳  大  学
课程设计说明书                 NO.11
// TODO: Add your control notification handler code here
 m_pSet->Delete();
 m_pSet->MoveNext();
 if(m_pSet->IsEOF())
  m_pSet->MoveLast();
 if(m_pSet->IsBOF())
  m_pSet->SetFieldNull(NULL);
 UpdateData(FALSE);
}
//刷新按钮代码
void CMyView::OnButtonupdate()
{
 // TODO: Add your control notification handler code here
 UpdateData();
 m_pSet->Update();
 m_pSet->Requery();
 // m_pSet->CancelUpdate();
}
//第一条按钮代码
void CMyView::OnButtonfirst()
{
// TODO: Add your control notification handler code here
 m_pSet->MoveFirst();
 if(m_pSet->IsBOF())
 {
MessageBox("记录已经在第一条");
     m_pSet->MoveNext();
  沈  阳  大  学
课程设计说明书                 NO.12
 UpdateData(FALSE);
        return;
}
 UpdateData(FALSE);
}
//下一条按钮代码
void CMyView::OnButtonnext()
{
 // TODO: Add your control notification handler code here
  m_pSet->MoveNext();
        if(m_pSet->IsEOF())
 {
  MessageBox("记录已经在最后一条");
     m_pSet->MovePrev();
        UpdateData(FALSE);
        return;
 }
     UpdateData(FALSE);
}
//前一条按钮代码
void CMyView::OnButtonprev()
{
 // TODO: Add your control notification handler code here
  m_pSet->MovePrev();
    if(m_pSet->IsBOF())
 {
  MessageBox("记录已经在第一条");
   
  沈  阳  大  学
课程设计说明书                 NO.13
m_pSet->MoveNext();
        UpdateData(FALSE);
        return;
 }
     UpdateData(FALSE);
}
//最后一条按钮代码
void CMyView::OnButtonlast()
{
 // TODO: Add your control notification handler code here
 m_pSet->MoveLast();
 if(m_pSet->IsEOF())
 {
  MessageBox("记录已经在最后一条");
     m_pSet->MovePrev();
        UpdateData(FALSE);
        return;
 }
     UpdateData(FALSE);
}
//显示图书销售对话框代码
void CMyView::OnRadio1()
{
 // TODO: Add your control notification handler code here
CMyDlg1 MyDlg1;
 MyDlg1.DoModal();
}
//显示图书分类对话框代码

上一页  [1] [2] [3] [4] [5] [6] 下一页

  • 上一篇文章:
  • 下一篇文章:
  • Copyright © 2007-2012 www.chuibin.com 六维论文网 版权所有