2.) Create a button and code it with this
this.pictureBox1.ImageLocation = "http://avatar.xboxlive.com/avatar/" + this.textBox1.Text + "/avatar-body.png";
3.) If You like to create a save button do so name it save then enter this as the code
SaveFileDialog dialog = new SaveFileDialog(); dialog.Filter = "PNG Image|*.png|JPEG Image|*.jpg|GIF Image|*.gif"; if (dialog.ShowDialog() == DialogResult.OK) { this.pictureBox1.Image.Save(dialog.FileName); }
4.)Now your done !

This tut was brought to you by xXxStevenxXx of Blueshadowz
Link below on next post
