Originally posted by EncepT
Hey i need help with my little account creator bot.i want that the Bot auto selects Dropdown menus,i already tried
webBrowser1.Document.GetElementById("DateOfBirth_Month").SetAttribute("selectIndex", "5");
But that didnt work.
And i want that the bot write all the Created accounts into an .TXT File,how can i do that?

Thanks in advance,best help will get some pp money
do webbrowser1.Document.GetElementById("ID").SetAttribute("value", "WhatToPut");//Replace "ID" with your elements'd ID (duh!), and replace the "WhatToPut" with
also, u can use dictionaries to save ur accs, then save a text file with the dictionaries u've just made
eg. List<string> accs = new List<string>();
then do accs.Add(account);
and finally for the saving do
File.AppendAllText(accs).Close();// or WriteAllText but AppendAllText adds, or even use TypeWriter class or StreamWriter class
after u created a text file do dat ^, or make a text file by doing File.CreateText thingy :p
P.S: i typed this here, so sorry if there's any syntax error :p, and no, i dont need any money :wub: