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...
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.