請教諸位大大
如下列 在VB6.0下 製成 exe執行檔
Option Explicit
Sub Main()
Dim f1
f1 = App.EXEName
Dim fso, f As Object
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(f1 & ".exe")
Dim n
n = fso.GetParentFolderName(f.Path)
Dim objXLApp
Set objXLApp = CreateObject("Excel.Application")
objXLApp.Visible = True
Dim objXLBook
Set objXLBook = objXLApp.Workbooks.Open(n & "\" & f1 & "資料庫\" & f1 & ".xls")
Set objXLBook = Nothing
Set objXLApp = Nothing
Set fso = Nothing
Set n = Nothing
Set f = Nothing
End Sub
若想執行該執行檔時
檔案總管資料夾視窗總是擋住所開出的表單
VB有無辦法 或語法加入上述內
使檔案總管資料夾視窗或其他視窗自動縮至最小化
請大家賜教 謝謝指導 (有點急)作者: yangjie 時間: 2017-11-29 14:49