Search results

  1. S

    Simple question to be solve

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

    Array to a file (text) help needed please

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