?? billinfolookup.cpp
字號:
// BillInfoLookup.cpp : implementation file
//
#include "stdafx.h"
#include "qq.h"
#include "BillInfoLookup.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBillInfoLookup dialog
CString CBillInfoLookup::STRINGS[100]={""};
CBillInfoLookup::CBillInfoLookup(CWnd* pParent /*=NULL*/)
: CDialog(CBillInfoLookup::IDD, pParent)
{
//{{AFX_DATA_INIT(CBillInfoLookup)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
BillCode = _T("");
HandCode = _T("");
Sum = 0;
Paid = 0;
Rebate = _T("");
Striked = FALSE;
bSuccess=false;
}
void CBillInfoLookup::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CBillInfoLookup)
DDX_Control(pDX, IDC_COMBO1, m_InfoLookup_BillCode);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CBillInfoLookup, CDialog)
//{{AFX_MSG_MAP(CBillInfoLookup)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CBillInfoLookup message handlers
BOOL CBillInfoLookup::OnInitDialog()
{
CDialog::OnInitDialog();
HICON m_hIcon=AfxGetApp()->LoadIcon(IDR_MAINFRAME2);
this->SetIcon(m_hIcon,true);
// TODO: Add extra initialization here
m_acCombo.Init(GetDlgItem(IDC_COMBO1));
if(!m_BillInfoSet.Open(AFX_DB_USE_DEFAULT_TYPE))
{
MessageBox("查詢數(shù)據(jù)庫失敗或者數(shù)據(jù)庫沒有連接!",
"數(shù)據(jù)庫錯誤",
MB_OK
);
return false;
}
InitDate();//
m_BillInfoSet.MoveFirst();//move to the first record
int i=0;
while(!m_BillInfoSet.IsEOF())
{
STRINGS[i]=m_BillInfoSet.m_BillCode;
m_BillInfoSet.MoveNext();
i++;
}
m_BillInfoSet.Close();//關(guān)閉數(shù)據(jù)庫
for (int j=0;(!STRINGS[j].IsEmpty()); j++)
{
m_acCombo.GetStringList().Add(STRINGS[j].GetBuffer(STRINGS[j].GetLength()));
}
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CBillInfoLookup::OnOK()
{
// TODO: Add extra validation here
CString str;
m_InfoLookup_BillCode.GetWindowText(str);
if(str=="")
{
MessageBox("請輸入帳單號碼!","手牌號錯誤",MB_OK);
return ;
}
if(!m_BillInfoSet.Open(AFX_DB_USE_DEFAULT_TYPE))
{
MessageBox("查詢數(shù)據(jù)庫失敗或者數(shù)據(jù)庫沒有連接!",
"數(shù)據(jù)庫錯誤",
MB_OK
);
bSuccess=false;
return ;
}
bool bInSQL=false;//是否存在這個數(shù)據(jù)記錄
m_BillInfoSet.MoveFirst();
while(!m_BillInfoSet.IsEOF())
{
if(m_BillInfoSet.m_BillCode==str)
{
bInSQL=true;
break;
}
else bInSQL=false;
m_BillInfoSet.MoveNext();
}
///////////////////////////////////////////////////////////
// 查詢成功的話保存得到的數(shù)據(jù)
if(bInSQL)
{
BillCode=m_BillInfoSet.m_BillCode;
HandCode=m_BillInfoSet.m_HandCode;
Sum=m_BillInfoSet.m_Sum;
Paid=m_BillInfoSet.m_Paid;
Rebate=m_BillInfoSet.m_Rebate;
Striked=m_BillInfoSet.m_Striked;
bSuccess=true;
}
else
{
MessageBox("該記錄不存在!","數(shù)據(jù)庫錯誤",MB_OK);
bSuccess=false;
m_BillInfoSet.Close();//關(guān)閉數(shù)據(jù)庫返回
return ;
}
////保存數(shù)據(jù)完成關(guān)閉數(shù)據(jù)庫
m_BillInfoSet.Close();
CDialog::OnOK();
}
void CBillInfoLookup::InitDate()
{
for(int i=0;i<100;i++)
{
STRINGS[i]="";
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -