How to: get text value on notepad visual basic 6

 



video recorded by ric suralta

 first add -TextBox1 -TextBox2 -command
 -----------CODE-------------
 Private Sub Command1_Click() Open "C:\save.txt" For Input As #1 Ctr = 0 Do While Not EOF(1) Input #1, UserName, Password text1.Text = UserName text2.Text = Password Ctr = Ctr + 1 Loop Close #1 End Sub
 ----------------------------------
 "How to put text value on notepad use Visual Basic 6" https://www.youtube.com/watch?v=sNjZuxORvjg&feature=youtu.be

Related Posts

Previous
Next Post »

0 comments