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.
weet iemand hoe ik de tekst kan bewaren in visual basic en vba?
My.Computer.FileSystem.WriteAllText("c:\bestandnaam.txt", "mij tekst", True)
ja dat bedoel ik maar hoe kan ik de computer iets laten lezen uit zo'n bestand?
The string that contains file contents
Dim FileContents As String = ""
Dim fileStream As System.IO.StreamReader = New System.IO.StreamReader("C:\Temp\fileName.txt")
'doorlopen van het hele txt bestand
While (Not fileStream.EndOfStream)
FileContents += fileStream.ReadLine() + vbNewLine
End While
' vervang alpha , met mighty84
FileContents = FileContents.Replace("Alpha", "mighty84")
'test alles
MessageBox.Show(FileContents)
bedankt maar weet u misschien ook de code voor Microsoft Powerpoint?
ik bedoel dat powerpoint het bestand kan lezen.
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.