Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,378,838

[VB] How to make Xbox 360 ScreenCaputre

Tutorial Name: [VB] How to make Xbox 360 ScreenCaputre  

Category: Xbox 360 Tutorials

Submitted By: NastyGamingNation

Date Added:

Comments: 2

Views: 2,129

Related Forum: Xbox Forum

Share:

1st - Create a New Project

2nd - Double click your project and right under
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;


You need to add
using XRPCLib;
using XDevkit;
using XRPCPlusPlus;


3rd - Add a new Button, rename it to "Connect"

4th - Double click the Button and type the following
Jtag.Connect();

            if (Jtag.activeConnection)
                System.Windows.Forms.MessageBox.Show("Active Connection");
            else
                MessageBox.Show("Not Connected!");


5th - Add another Button, rename it to "Screeshot"

6th - Double click the Button and type the following
private void button2_Click(object sender, EventArgs e)
        {
        string a;
        a = Application.StartupPath + "\XboxScreenShot.bmp";
        Jtag.xbCon.ScreenShot(a);
        System.Diagnostics.Process.Start(Application.StartupPath + "\XboxScreenShot.bmp");
        }

        private void button3_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Make Sure XPRC Is A Plugin On Dashlaunch");
            MessageBox.Show("Connect The Tool To Xbox 360");
            MessageBox.Show("Press 'Screenshot' Whenever You Want");
            MessageBox.Show("Go To The Folder Where The Tool Is");
            MessageBox.Show("And Your Screenshot Will Be There!!!");
        }


Build it and your done!

Make sure XRPC is a plugin on dashlaunch.

Here is what mine looks like

[ Register or Signin to view external links. ]

Ratings

Current rating: 4.17 by 6 users
Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"[VB] How to make Xbox 360 ScreenCaputre" :: Login/Create an Account :: 2 comments

If you would like to post a comment please signin to your account or register for an account.

TOXICPosted:

This looks to be quite useful thank mate.

KatsumiPosted:

Now this is genuinely interesting. Thanks!