(adsbygoogle = window.adsbygoogle || []).push({});
ok, so my code is this:
TextBox2.Text = StringToMD5("zxcasa") : If TextBox1.Text = (TextBox2.Text) Then TextBox3.Text = ("zxcasa") : MsgBox("Done")
now i would like it to change "zxcasa" with words from a wordlist in a .txt file, so its like this
TextBox2.Text = StringToMD5("word1") : If TextBox1.Text = (TextBox2.Text) Then TextBox3.Text = ("word1") : MsgBox("Done")
TextBox2.Text = StringToMD5("word2") : If TextBox1.Text = (TextBox2.Text) Then TextBox3.Text = ("word2") : MsgBox("Done")
etc.
but without me having to type it all so what would be the code?
p.s i would also like to change the extention of the txt file but i still want my program to recognize it as a txt file so how?