BHO works in IE6 but not IE7
The BHO works in IE6 but not IE7.
The place it fails in IE7 is that it does not perform the Navigate2 method correctly.
I tried changing the 2nd parameter in Navigate2 to different values according to MSDN documentation. It yield different results.
Thus, I know Navigate2 is actually being executed but not correctly.
Can someone spot where the problem is?
Thanks.
Private Sub m_ie_BeforeNavigate2(ByVal pDisp As Object, url, flags, TargetFrameName, PostData, Headers, Cancel As Boolean)
If someConidtionIsTrue Then
m_ie.Navigate2 "xxx.jsp", 0, "aFrame", Null, Null
End If
End Sub

