123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // ConnectDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "LYFZIPManage.h"
- #include "ConnectDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CConnectDlg dialog
- CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CConnectDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CConnectDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void CConnectDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CConnectDlg)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CConnectDlg, CDialog)
- //{{AFX_MSG_MAP(CConnectDlg)
- ON_WM_TIMER()
- ON_WM_CLOSE()
- ON_WM_DESTROY()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CConnectDlg message handlers
- void CConnectDlg::OnOK()
- {
- // TODO: Add extra validation here
- }
- void CConnectDlg::OnCancel()
- {
- // TODO: Add extra cleanup here
- }
- extern HWND g_hConnectWnd;
- BOOL CConnectDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- g_hConnectWnd=m_hWnd;
- // TODO: Add extra initialization here
- SetTimer(1, 100, NULL);
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void CConnectDlg::OnTimer(UINT nIDEvent)
- {
- // TODO: Add your message handler code here and/or call default
- KillTimer(nIDEvent);
- if(g_pMainWnd->OnConnect()==0)
- {
- SetTimer(1, 1000, NULL);return;
- //::Sleep (1000);
- }
- g_bSendOK=1; g_hConnectWnd=NULL;
- CDialog::OnCancel ();
- }
- void CConnectDlg::OnClose()
- {
- // TODO: Add your message handler code here and/or call default
- KillTimer(1); g_hConnectWnd=NULL;
- CDialog::OnCancel ();
- }
- void CConnectDlg::OnDestroy()
- {
- CDialog::OnDestroy();
- g_hConnectWnd=NULL;
- // TODO: Add your message handler code here
-
- }
|