Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Imports System
Imports System.IO
Class Test
Public Shared Sub Main()
Try
Using sr As New StreamReader("C:\Program blabla\1.txt")
Dim line As String
Do
line = sr.ReadLine()
If Not (line Is Nothing) Then
Select Case LCase(line)
Case "ja"
MsgBox "Hallo"
Case "nee"
MsgBox "Niet Hallo"
Case Else
MsgBox "Iets anders"
End Select
End If
Loop Until line Is Nothing
End Using
Catch e As Exception
MsgBox("Het bestand kon niet worden gelezen: " & e.Message)
End Try
End Sub
End Class
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.