Hur skriver man för att få informationen i en text-fil presenterad i en text-ruta i ett vb-program???? <code>
hämta info från fil
Svara
Sv: hämta info från fil
Svara
Open "test.fil" For Input As #1
Do While Not Eof(1)
Line Input #1, buffer
theString = theString & buffer
Loop
Close
Text1.Text = theString
</code>