請教各位
我有一支程式,想要比對檔名正確後才執行
例如 ABCDE_12345_zzzzz.exe
現在寫的程式可執行
如果想模糊比對改如何修改
如 ABCDE_12345_zzzzz.exe
我只要第一欄位輸入ABC
第二欄位輸入123
第三欄位輸入zz
就可以找到檔案這樣
Private Sub cmd_exe_Click()
If Dir(strBatPath & txt_info(0) & "_" & txt_info(1) & "_" & txt_info(2) &
".exe") = "" Then
lblMsg.Caption = "無此執行檔"
Exit Sub
End If
Shell strBatPath & txt_info(0) & "_" & txt_info(1) & "_" & txt_info(2) &
".exe", vbNormalFocus
End
End Sub
感謝幫忙~~~