12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 您必须更新软件才能继续使用, 请与系统管理员联系!
- 必须更改以下多处,才能同时起效:
- 1.
- 文件:客户端工程welcome.cpp
- 函数:
- BOOL Welcome::OnInitDialog()
- {
- ...
- int version=600;
- str.Format("00%d",version);
- ...
- }
- 2.
- 文件:客户端工程ChoosePhotoSkin.cpp
- 函数:
- void ChoosePhotoSkin::Init()
- {
- ...
- if(g_cominfoarray.ElementAt(0).ElementAt(0)!="600")
- {
- AfxMessageBox("您必须更新软件才能继续使用, 请与系统管理员联系!", MB_ICONINFORMATION);
- CDialog::OnCancel();
- g_pMainWnd->AutoUpdate();
- return;
- }
- ...
- }
- 3.
- 文件:客户端工程Login.cpp
- 函数:
- BOOL Login::OnInitDialog()
- {
- ...
- if(g_cominfoarray.ElementAt(0).ElementAt(0)!="600")
- {
- ...
- }
- ...
- }
- 4.
- 文件:客户端工程Login3.cpp
- 函数:
- BOOL Login::OnInitDialog()
- {
- ...
- if(g_cominfoarray.ElementAt(0).ElementAt(0)!="600")
- {
- ...
- }
- ...
- }
- 5.
- 文件:安装升级SQL版DBServerDlg.cpp
- 函数:
- void CDBServerDlg::CheckHistoryData()
- {
- ...
- sql= "update [version] set version='600'";
- ...
- }
- 6.
- 文件:安装升级企业版SQL版DBServerDlg.cpp
- 函数:
- void CDBServerDlg::CheckHistoryData()
- {
- ...
- sql= "update [version] set version='600'";
- ...
- }
|