2014-02-10 101 views
-4

之前存在的對象是自己的方式來檢查應用程序存在之前,我在代碼編寫創建對象VB檢查是否建立

我知道這是安裝,我可以使用它,但如果我想程序先檢查?

Set objOutlook = GetObject("Outlook.Application") 

回答

0

實際上,您應該驗證在註冊表中是否有條目。 您可以按照以下步驟操作;

Dim regKey As RegistryKey 

regKey = My.Computer.Registry.ClassesRoot.OpenSubKey("Outlook.Application", False).OpenSubKey("CurVer", False) 

If not string.IsNullOrEmpty(regKey.GetValue("")) then 

// Your code 

End if