Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Dim strText As String
Dim strInput As String
Open "C:\DeinPfad\DeineDatei.txt" For Input As #1
Do Until EOF(1)
Line Input #1, strInput
strText = strText & strInput & vbCrLf
Loop
Close #1
MsgBox "Text in Datei: " & vbCrLf & vbCrLf & strText