国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
用VB6.0編寫自我升級(jí)的程序(一)

 

曾經(jīng)有位網(wǎng)友和我討論怎樣編寫一個(gè)通過服務(wù)器對(duì)客戶機(jī)上的程序進(jìn)行自我升級(jí)的問題,由于我的項(xiàng)目也涉及到自我升級(jí),當(dāng)時(shí)我把我的解決方案提了出來,那就是做一個(gè)類似于瑞星的升級(jí)程序。在這里我也發(fā)現(xiàn)了很多的網(wǎng)友對(duì)這個(gè)問題很困惑,故我愿意把我的設(shè)計(jì)方案寫出來與大家共享,大家也可以通過這個(gè)思路用其他語言進(jìn)行改寫。

 

以下是我的具體思路:

寫兩個(gè)程序,一個(gè)是主程序;一個(gè)是升級(jí)程序(升級(jí)程序放在服務(wù)器上);

說明:所有升級(jí)任務(wù)都由升級(jí)程序完成。

 

1.啟動(dòng)升級(jí)程序,升級(jí)程序連接到網(wǎng)站,下載新的主程序(當(dāng)然還包括支持的庫文件等)到臨時(shí)文件夾;

2.升級(jí)程序檢測(cè)舊的主程序是否活動(dòng),若活動(dòng)則關(guān)閉舊的主程序(同時(shí)記下主程序的狀態(tài));

3.刪除舊的主程序,拷貝臨時(shí)文件夾中的文件到相應(yīng)的位置,同時(shí)注冊(cè)相應(yīng)的文件;

4.檢查主程序的狀態(tài),若狀態(tài)為活動(dòng)的,則啟動(dòng)新的主程序;

5.關(guān)閉升級(jí)程序。

6.祝賀你,升級(jí)完成。

由于網(wǎng)友提出了關(guān)于升級(jí)這個(gè)升級(jí)程序的問題,以下是對(duì)其思路進(jìn)行的一點(diǎn)補(bǔ)充,但原文仍然是升級(jí)主程序的,具體代碼需讀者自己添加:

7.主程序升級(jí)完畢;
8.升級(jí)程序繼續(xù)檢查所下載的臨時(shí)文件中是否含有NewUpdate.exe(新的升級(jí)程序)和rename.exe(是一個(gè)可以更改文件名的程序);
9.若存在以上兩個(gè)文件,表示要更新Update.exe文件;啟動(dòng)rename.exe程序,同時(shí)update.exe關(guān)掉自己;
10.rename.exe程序檢測(cè)update.exe是否已被關(guān)掉,若已關(guān)掉,刪除該update.exe。移動(dòng)臨時(shí)文件夾中的NewUpdate.exe文件到主程序的目錄下,同時(shí)更名為update.exe;
11.rename.exe關(guān)掉自己。
12.OK,至此升級(jí)程序也被升級(jí)了。

 

 

下面進(jìn)行具體的程序編寫,需建立三個(gè)工程,然后把它們編輯成一個(gè)組,三個(gè)工程需共用一個(gè)模塊。

 

建立工程步驟:

1.        建立工程proMain:打開vb,“新建工程”,選擇“標(biāo)準(zhǔn)EXE, 再給工程中添加模塊,并且命名為modCommon,修改窗體名為frmMain,同時(shí)修改工程名為projMain,然后保存到某個(gè)文件夾(譬如在桌面建立個(gè)文件夾Update),窗體、模塊和工程分別保存為frmMain.frm、modCommon.bas、projMain.vbp;

 

2.        建立工程projNewMain:點(diǎn)擊菜單“文件|新建工程” ,選擇“標(biāo)準(zhǔn)EXE”,點(diǎn)擊菜單“工程|添加模塊”,在彈出的對(duì)話框中選擇“現(xiàn)存”標(biāo)簽,定位到Update文件夾,選中modCommon.bas模塊。修改窗體名為frmNewMain,同時(shí)修改工程名為projNewMain,然后保存到Update文件夾,窗體和工程分別保存為frmNewMain.frmprojNewMain.vbp;

 

 

3.        建立工程projUpdate:點(diǎn)擊菜單“文件|新建工程” ,選擇“標(biāo)準(zhǔn)EXE”,點(diǎn)擊菜單“工程|添加模塊”,在彈出的對(duì)話框中選擇“現(xiàn)存”標(biāo)簽,定位到Update文件夾,選中modCommon.bas模塊。修改窗體名為frmUpdate,同時(shí)修改工程名為projUpdate,然后保存到Update文件夾,窗體和工程分別保存為frmUpdate.frmprojUpdate.vbp;

 

4.        建立組:在工程projUpdate中,點(diǎn)擊菜單“文件|添加工程”在彈出的對(duì)話框中選擇“現(xiàn)存”標(biāo)簽,定位到Update文件夾,選擇projMain.vbp;重復(fù)該動(dòng)作,選擇projNewMain.vbp;保存該組即可;

 

5.        關(guān)閉工程,定位到Update文件夾,然后執(zhí)行下面的步驟。

 

 

各個(gè)工程文件中的文件源碼:

一、 projMain.vbp工程:

說明:這個(gè)是舊的主程序,從來沒有進(jìn)行過升級(jí)前的程序。

 

用記事本打開frmMain.frm文件,copy以下內(nèi)容到其中

 

VERSION 5.00

Begin VB.Form frmMain

   Caption         =   "請(qǐng)點(diǎn)擊升級(jí)進(jìn)行程序"

   ClientHeight    =   1140

   ClientLeft      =   60

   ClientTop       =   345

   ClientWidth     =   4500

   LinkTopic       =   "Form1"

   ScaleHeight     =   1140

   ScaleWidth      =   4500

   StartUpPosition =   3  窗口缺省

   Begin VB.CommandButton Command1

      Caption         =   "升級(jí)"

      Height          =   525

      Left            =   1380

      TabIndex        =   0

      Top             =   570

      Width           =   1245

   End

End

Attribute VB_Name = "frmMain"

Attribute VB_GlobalNameSpace = False

Attribute VB_Creatable = False

Attribute VB_PredeclaredId = True

Attribute VB_Exposed = False

 

 

 

Option Explicit

 

‘ ------------------------------------------

升級(jí)程序的例子

作者:   謝家峰

日期:   2003/12/19

這里是沒有升級(jí)時(shí)的主程序

‘ ------------------------------------------

 

Private Sub Command1_Click()

  Command1.Enabled = False

   

  運(yùn)行更新程序

  Shell App.Path & "\update.exe", vbNormalFocus

 

End Sub

 

Private Sub Form_Load()

  If App.PrevInstance Then End

 

  UpdateIniPath = App.Path & "\Update.ini"

   

  記錄主程序的名字

  WritePrivateProfileString "Main", "Name", App.EXEName, UpdateIniPath

  記錄運(yùn)行狀態(tài)

  WritePrivateProfileString "Main", "Active", "-1", UpdateIniPath

  記錄更新次數(shù)

  WritePrivateProfileString "Update", "Num", "0", UpdateIniPath

 

  Me.Caption = App.EXEName

End Sub

 

Private Sub Form_Unload(Cancel As Integer)

  記錄運(yùn)行狀態(tài)

  WritePrivateProfileString "Main", "Active", "0", UpdateIniPath

End Sub

 

 

用記事本打開modCommon.bas文件,copy以下內(nèi)容到其中

 

Attribute VB_Name = "modCommon"

Option Explicit

 

‘ ------------------------------------------

升級(jí)程序的例子

作者:   謝家峰

日期:   2003/12/19

這里是通用模塊,放置API函數(shù)以及公用函數(shù)

‘ ------------------------------------------

 

Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

 

 

Public Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal lSize As Long, ByVal lpFilename As String) As Long

Public Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As Any, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lplFilename As String) As Long

Public Declare Function GetPrivateProfileSection Lib "kernel32" Alias "GetPrivateProfileSectionA" (ByVal lpAppName As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFilename As String) As Long

Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long

 

Const WM_Close = &H10

 

Private Const gintMAX_SIZE% = 255                        ‘Maximum buffer size

 

Public UpdateIniPath As String

 

‘ ===============================================

從資源文件中提取文件

‘ ===============================================

Public Function SaveFileFromRes(vntResourceID As Variant, sType As String, sFileName As String) As Boolean

 

  Dim bytImage() As Byte

  Dim iFileNum As Integer

 

  On Error GoTo SaveFileFromRes_Err

  SaveFileFromRes = True

  bytImage = LoadResData(vntResourceID, sType)

  

  iFileNum = FreeFile

  Open sFileName For Binary As iFileNum

  Put #iFileNum, , bytImage

  Close iFileNum

  Exit Function

 

SaveFileFromRes_Err:

  SaveFileFromRes = False: Exit Function

End Function

 

 

‘ ===============================================

從緩沖區(qū)中讀取字符串

‘ ===============================================

Private Function StringFromBuffer(Buffer As String) As String

    Dim nPos As Long

 

    nPos = InStr(Buffer, vbNullChar)

    If nPos > 0 Then

        StringFromBuffer = Left$(Buffer, nPos - 1)

    Else

        StringFromBuffer = Buffer

    End If

End Function

 

‘ ===============================================

Ini文件

‘ ===============================================

Public Function ReadIniFile(ByVal strIniFile As String, ByVal strSection As String, ByVal strKey As String, Optional ByVal strKeyDefault As String = vbNullString) As String

    Dim strBuffer As String

    strBuffer = Space$(gintMAX_SIZE)

 

    If GetPrivateProfileString(strSection, strKey, strKeyDefault, strBuffer, gintMAX_SIZE, strIniFile) Then

       ReadIniFile = StringFromBuffer(strBuffer)

    End If

End Function

 

檢查文件是否存在

Function FileExists(filename As String) As Boolean

    On Error Resume Next

    FileExists = (Dir$(filename) <> "")

End Function

 

改變標(biāo)簽的文本及位置

Public Function ChangeLabelPos(frm As Form, lbl As Label, msg As String)

 

     With lbl

          .Caption = msg

          .Left = (frm.ScaleWidth - .Width) / 2

          .Top = .Height / 2

     End With

End Function

 

關(guān)閉窗體

Function CloseValidForm(Ret As String) As Boolean

   Dim WinWnd As Long

   

   搜尋該窗口的句柄

   WinWnd = FindWindow(vbNullString, Ret)

   If WinWnd <> 0 Then

      SendMessage WinWnd, WM_Close, 0&, 0&

   End If

   CloseValidForm = True

End Function

 

 


相關(guān)文章
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
【黒客編程】VB木馬也瘋狂
VB實(shí)用代碼,收藏!!
用VB關(guān)閉程序
VB 去掉窗口上的關(guān)閉按鈕
vb中如何判斷窗體是否已經(jīng)加載,如有一form1對(duì)象,如何判斷它是否被加載?
在VB中調(diào)用CHM幫助的幾種方法
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服