Tutorials Navigation
[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: 3
Views: 2,161
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
Comments
Related Tutorials
- 01. How to remove family settings/parental controls on Xbox 360(4,194)
- 02. Pico Flasher ISD / Sonus Programming(3,610)
- 03. College Football Revamped Tutorial/Installation(7,199)
- 04. (JTAG/RGH) How-To Download, Extract & Play Goldeneye 007(7,316)
- 05. Darkest of Days Achievement Guide [XBOX 360](2,976)
- 06. College Hoops 2K6 Achievement Guide [XBOX 360](3,257)
- 07. Blazing Angels Achievement Guide [XBOX 360](3,272)
- 08. Avatar: The Burning Earth Achievement Guide(3,810)
- 09. 2006 FIFA World Cup Achievement Guide [XBOX 360](4,710)
- 10. Turok: Sniper!(2,504)
- 11. Turok: Impaler Ribbon(2,349)
- 12. Turok: Dino Dominance(2,390)
- 13. 0 Day Attack on Earth Achievements Guide(3,106)
- 14. Turok: Sell Your Shotguns(2,552)
- 15. Terminator: Salvation Achievement Guide(3,047)
"[VB] How to make Xbox 360 ScreenCaputre" :: Login/Create an Account :: 3 comments