So this is my first attempt with making a program and what i'm trying to do is make a program that retrevies profile information off xbox.com i.e avatar picture, name, location, etc...

basically it would start with http://live.xbox.com/en-US/profile/profile.aspx?pp=0&GamerTag=* and the * would be the variable

now how would i put the information gathered in the form into seperate areas

i'm not sure if this is making any sense but i would appreciate any help

Recommended Answers

All 4 Replies

It does make sense, but your question is way too general. Based on you're post we have no idea how far you are... have you actually downloaded the information from the website already? Have you parsed it to get the individual items that you are interested in? etc. etc.

So please be more specific as to where the problem you're having is, and tell us what you have done so far.

To do stuff like this you need to right tool for the job. C++ is not the correct tool
for this job. I suggest something like php.

Here is the preview of what I have so far
[IMG]http://i952.photobucket.com/albums/ae6/offthexheezay/Project%20Preview/PREVIEW.jpg[/IMG]

The code sniplet below is what I have to retrieve the images it is working so far the only thing I dont know where to go is with retrieving individual information like the bio and location

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        PictureBox2.ImageLocation = "http://avatar.xboxlive.com/avatar/" + TextBox1.Text + "/avatar-body.png"
        PictureBox3.ImageLocation = "http://avatar.xboxlive.com/avatar/" + TextBox1.Text + "/avatarpic-l.png"
    End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.