![]() |
|
Logging into MyBB via C++ - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: C, C++, & Obj-C (https://sinister.ly/Forum-C-C-Obj-C) +--- Thread: Logging into MyBB via C++ (/Thread-Logging-into-MyBB-via-C--69600) |
Logging into MyBB via C++ - Makan - 08-03-2015 First you'll need to download: http://www.megafileupload.com/1Ewp/Login_To_Mybb.dll
Next add it to your c# project
Add 2 textboxes(username/password)
Add a button(login)
Button code:
[hide]
Code: Login_To_Mybb.MybbLogin Add = new Login_To_Mybb.MybbLogin();
dynamic res = Add.LoginToMybb("Supremeforums.net/member.php?action=login", textBox1.Text, textBox2.Text);
if (res == 1)
{
MessageBox.Show("Logged in!");
webBrowser1.Navigate("Where to redirect after logged in");
}
else
{
MessageBox.Show("Username/Password wrong try again!");
}
}[/hide]
RE: Logging into MyBB via C++ - Zodiac - 08-03-2015 At least give credits to Travis for this. RE: Logging into MyBB via C++ - Google_mybb_import13542 - 08-06-2015 Thanks for the share, I want to take a look. |