// SendReg.cpp : implementation file // #include "stdafx.h" #include "AutoRun.h" #include "SendReg.h" #include "mysqldata.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif extern DWORD g_nSendCode; ///////////////////////////////////////////////////////////////////////////// // SendReg dialog SendReg::SendReg(CWnd* pParent /*=NULL*/) : CDialog(SendReg::IDD, pParent) { //{{AFX_DATA_INIT(SendReg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT m_times=0; } void SendReg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(SendReg) DDX_Control(pDX, IDC_LIST1, m_List1); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(SendReg, CDialog) //{{AFX_MSG_MAP(SendReg) ON_BN_CLICKED(IDC_BUTTON1, OnButton1) ON_WM_TIMER() //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // SendReg message handlers BOOL SendReg::OnInitDialog() { CDialog::OnInitDialog(); // TODO: Add extra initialization here m_List1.SetHeadings("账号,100;号码,100;内容,100;时间,100;费用,100;报告,100" ); m_List1.LoadColumnInfo (119); OnButton1(); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } void SendReg::OnButton1() { // TODO: Add your control notification handler code here GetDlgItem(IDC_BUTTON1)->EnableWindow(0); m_times=0; SetTimer(1, 1000, NULL); Refresh(); CRecordset myset(&g_db); CString sql="select count(*) as cot from sendreg"; myset.Open (CRecordset::forwardOnly, sql); myset.GetFieldValue ("cot", sql); myset.Close(); m_List1array.SetSize(atol(sql) , 1 ); RstSendReg rsSt; rsSt.Open(); DWORD ii=0; while(!rsSt.IsEOF()) { m_List1array.ElementAt (ii).RemoveAll (); m_List1array.ElementAt (ii).Add(rsSt.m_account) ; m_List1array.ElementAt (ii).Add(rsSt.m_phones) ; m_List1array.ElementAt (ii).Add(rsSt.m_content) ; m_List1array.ElementAt (ii).Add(rsSt.m_timestamp) ; m_List1array.ElementAt (ii).Add(rsSt.m_msgcount) ; m_List1array.ElementAt (ii).Add("发送:"+rsSt.m_log) ; ii++; rsSt.MoveNext();if(m_List1array.GetSize ()<=ii)break; } rsSt.Close();m_List1array.SetSize(ii , 1 ); FillGrid(); } void SendReg::FillGrid() { m_List1.DeleteAllItems2 (); int ii=0; m_List1.m_arLabels.SetSize( m_List1array.GetSize (), 1 ); int count=0; for(ii=0; ii9)break; rsSt.MoveNext(); } rsSt.Close(); if(timestamp.IsEmpty ())return; CString str; str=m_strLoginID; str+="\r\n"; str+=m_strLoginPwd; str+="\r\n"; str+=timestamp; BYTE *pData=new BYTE[str.GetLength ()]; memcpy(pData, str.GetBuffer (0), str.GetLength ()); str.ReleaseBuffer (); EncryptFile2(pData, str.GetLength (), "888666333"); g_nSendCode=4; g_pMainWnd->ProcessChatMessageRequest2(pData, str.GetLength ()); g_nSendCode=0; delete []pData; if(g_bSendOK==0)return; if(g_str.GetLength ()) { CStringArray strarray; int pos=g_str.Find (","); if(pos!=-1) { strarray.Add(g_str.Left (pos)); g_str=g_str.Right (g_str.GetLength ()-pos-1); pos=g_str.Find (","); while(pos!=-1) { strarray.Add (g_str.Left (pos)); g_str=g_str.Right (g_str.GetLength ()-pos-1); pos=g_str.Find (","); } strarray.Add (g_str); } else strarray.Add (g_str); if(strarray.GetSize ()!=idarray.GetSize ())return; CString sql,sok; for(int i=0; i10) { KillTimer(nIDEvent); GetDlgItem(IDC_BUTTON1)->EnableWindow(1); GetDlgItem(IDC_BUTTON1)->SetWindowText("刷新"); return; } CString str; str.Format ("刷新(%d)", 11-m_times); GetDlgItem(IDC_BUTTON1)->SetWindowText(str); }