Click here to Skip to main content
15,885,961 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have developed one IE automation project and deployed in some different clients, everywhere its working fine but my one client end I am facing one issue. which creating an instance with Create Object is giving me error no 430, "Class does not support Automation or does not support expected interface".

VB
Dim WithEvents IE As InternetExplorer

Private Sub Form_Load()

	Set IE = CreateObject("Internetexplorer.application")	'' Here I am getting an error.
	IE.Visible = True
	IE.Navigate ("www.google.com")

End Sub
Private Sub IE_DocumentComplete(ByVal pDisp As Object, URL As Variant)
MsgBox "Page Loaded"
End Sub


I tried all mentioened steps in http://www.colba.net/~hlebo49/er430.htm, but none of them worked for me.

I also tried to migrate IE 6 to IE 8, but still its not working.

Note: Client have installed Macfee and he would not be able to disable it, but before some days ago its was working with macFee, then he reinstall OS and this problem got occured.

Can anybody please help me that what could be the issue? I am just stuck on this.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900