You are viewing our Forum Archives. To view or take place in current topics click here.
JRPC Wont connect
Posted:
JRPC Wont connectPosted:
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
Status: Offline
Joined: Jun 23, 201410Year Member
Posts: 69
Reputation Power: 2
What is the codding to get the JRPC tool to connect to the jtag
I do not have XRPC so it wont work if you give me a xrpc one'
I do not have XRPC so it wont work if you give me a xrpc one'
#2. Posted:
Status: Offline
Joined: Jan 24, 201014Year Member
Posts: 850
Reputation Power: 44
Status: Offline
Joined: Jan 24, 201014Year Member
Posts: 850
Reputation Power: 44
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DevComponents.DotNetBar;
using System.Net;
using System.Diagnostics;
using System.IO;
using JRPC_Client;
using XRPCLib;
using XRPCPlusPlus;
using XDevkitPlusPlus;
using XDevkit;
namespace Simplify_Modding_Project
{
public partial class Form3 : DevComponents.DotNetBar.Metro.MetroForm
{
public Form3()
{
InitializeComponent();
}
JRPC Jtag2 = new JRPC();
public static IXboxManager xbm = new XboxManagerClass();
public static XboxConsole xboxConsole = xbm.OpenConsole(xbm.DefaultConsole);
private void button57_Click(object sender, EventArgs e)
{
try
{
Jtag2.Connect();
if (Jtag2.activeConnection)
{
MessageBoxEx.Show("Connection to Console Successful");
this.labelItem7.Text = ("CONNECTION STATUS: ON");
}
}
catch (Exception)
{
MessageBoxEx.Show("An Error has occured.");
}
}
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.