A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

UserName Grabber [C#]

1.5k views · started by Shell ·
#1
UserName Grabber [C#]
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace NameGetter
{
public partial class Form1 : Form
{
HTTPWrapper Wrapper = new HTTPWrapper();

public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{

Random random = new Random();
Int32 rndid = random.Next(5000, 25000000);

String Get = Wrapper.Get("http://www.gaiaonline.com/profiles/" + rndid);
String ID = Wrapper.Between(Get, "http://www.gaiaonline.com/profiles/", "/");

textBox1.Text = ID;

}
}
}
#2
Okay if I used this and like I say - " Program Made By Me - Code By Bradly " That would leeching right and I could get in trouble right LOL if not IM DO IT >-<
#3
linzblue wrote:
Okay if I used this and like I say - " Program Made By Me - Code By Bradly " That would leeching right and I could get in trouble right LOL if not IM DO IT >-<


Just put my name in the thread for what ever you used, do not use on other sites, and add on to it.
#4
Bradley wrote:
Just put my name in the thread for what ever you used, do not use on other sites, and add on to it.


Awesome dont worry I wont post on any other site im new to programing trying to get into gaia programing and gonna use your code to help me make my first program :) cool right haha im 12 so yeah just trying to get REALLY good :) Uhmm how would I add on?

---------- Post added at 03:54 AM ---------- Previous post was at 02:17 AM ----------

When can I get http wrapper cause I need that for this to work correct?
#5
linzblue wrote:
Awesome dont worry I wont post on any other site im new to programing trying to get into gaia programing and gonna use your code to help me make my first program :) cool right haha im 12 so yeah just trying to get REALLY good :) Uhmm how would I add on?

---------- Post added at 03:54 AM ---------- Previous post was at 02:17 AM ----------

When can I get http wrapper cause I need that for this to work correct?


Criss has a public one in Programming Releases
#6
Error 1 The namespace 'HTTPWrapper' already contains a definition for 'HTTPOptions' C:\Users\crystal\AppData\Local\Temporary Projects\WindowsFormsApplication1\HTTPOptions.cs 12 11 WindowsFormsApplication1


Error 2 The namespace 'HTTPWrapper' already contains a definition for 'HTTPInterface' C:\Users\crystal\AppData\Local\Temporary Projects\WindowsFormsApplication1\HTTPInterface.cs 21 11 WindowsFormsApplication1