The below code opens IE inside excel. Column A has URL’s in them and when I click a URL they are displayed in the embedded IE browser. Is there a way to do this in calc on linux? Thanks!
Dim WithEvents ie As WebBrowser
Private Sub CommandButton1_Click()
WebBrowser1.Document.body.Scroll = "no"
Dim site As String
site = Sheets("New").Range("A" & Range("E1").Value).Value
WebBrowser1.Navigate (site)
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Count = 1 Then
If Not Intersect(Target, Range("A:A")) Is Nothing Then
'MsgBox Target.Value
WebBrowser1.Navigate (Target.Value)
End If
End If
End Sub