leider nicht
Dim OFD As New OpenFileDialog()
03
With OFD
04
.Filter = "All Files |*.*"
05
.FileName = ""
06
End With
07
If (OFD.ShowDialog() = Windows.Forms.DialogResult.OK) Then
08
WebBrowser1.DocumentText = _
09
System.IO.File.ReadAllText(OFD.FileName)
10
11
End If
hatte das auch versuch
aber dann öffnet er es ja nur
Quote:
Originally Posted by ►INGE◄
Hey,
Dim KLICK_B As HtmlElement
For Each KLICK_B In WebBrowser1.Document.All
If (KLICK_B.GetAttribute("classname") = "pictureupload-pickfiles button") Then
KLICK_B .InvokeMember("click")
Exit For
End If
Next
Das sollte gehn, wenn nicht pn me
|