Question : IE8 JavaScript Disabled

I'm trying to launch the Goolge Apps Sync Install (https://tools.google.com/dlpage/gappssync) using IE8 but the hyperlink is unresponsive.  The attached image shows the error message in the IE notification bar (bottom left).  I've tried enabling all scripting in IE Internet Options, but the buttom continues to not work.  Suggestions?
Attachments:
 
JavaScript Disabled
JavaScript Disabled
 

Answer : IE8 JavaScript Disabled

Use the Form_Unload event instead. Then you can cancel the unload.

Lee

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Private Sub Form_Unload(Cancel As Integer)

    If txtbox1 = "Enter here" Then
       MsgBox "Please enter data into first textbox"
       txtbox1.SetFocus
       Cancel = True
    ElseIf txtbox2 = "Enter here" Then
       MsgBox "Please enter data into second textbox"
       txtbox2.SetFocus
       Cancel = True
    End If

End Sub
Random Solutions  
 
programming4us programming4us