Dim pass = txtPass.Text
Dim user = txtUser.Text
Dim joinin As String
joinin = user & "," & pass
Dim swriter As IO.TextWriter
swriter = IO.File.CreateText("E:\text.txt")
swriter.Write(joinin)
swriter.Close()
MessageBox.Show("Text...
I try, but cant.
It does not read and compare the value in the TextBox1 and 2 to the text file at E:\text.txt.
Can help
==============================================
Dim sPassArray() As String
Dim pass = TextBox1.Text
Dim user = TextBox2.Text
Dim eii As String...
Can anyone help me to convert this into vb.net, mine cant convert. Thank!
Or can someone know how to save the array to a file (text, ...what ever) and when the app start, read the file back into an array, and validate user inputs (example: login password)
Thank again in advance.
Option Explicit...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.