Question : Looking for a script to update Adobe Flash on a Windows PC

Basically am looking for a script that can run the Flash update silently.  This way I can call it from my login script as needed.  Your help is very much appreciated.

Answer : Looking for a script to update Adobe Flash on a Windows PC

I had the Cancel = True statement in a less than optimal place. If you move it before the last End If, that would permit the normal double-click event to occur if the user double-clicks outside the range E18:E328
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("E18:E328")) Is Nothing Then
    Target.Font.Name = "Marlett"
    If Target = vbNullString Then
        Target = "r"
    Else
        Target = vbNullString
        If Not Intersect(Target, Range("E46:E48")) Is Nothing Then
            If Application.CountA(Range("E46:E48")) = 0 Then
                Range("F46") = "True"
            Else
                Range("F46") = "False"
            End If
        End If
    End If
    Cancel = True
End If
End Sub
Random Solutions  
 
programming4us programming4us