查看: 616  |  回复: 0
  VB6 判断是否是Windows的可执行文件
楼主
发表于 2023年5月5日 14:04

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Private Function f_WinExe(ByVal Exe As String) As Integer
    Dim fh As Integer
    Dim t As String * 1

    fh = FreeFile
    Open Exe For Binary As #fh
        Get fh, 25, t
    Close #fh

    f_WinExe = (Asc(t) = &H40&)
End Function

Private Sub Command1_Click()
    Dim strFN As String
    
    strFN = App.Path & "\manongku.exe" '如果是exe文件显示-1
    MsgBox f_WinExe(strFN)
    
    strFN = App.Path & "\manongku.txt" '如果是不是exe文件显示0
    MsgBox f_WinExe(strFN)    
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com