yop ,
je vais release des codages grace au PS3Lib qui servent
Screen :
:
La ToggleSwitch :
Le Changeur de CID :
Option de la Console :
[/I][/U][/B]
Notification :
Credits : FMT | TiGGe | iHax
PS : Merci Baptiste Pour la faute a la toggle switch
je vais release des codages grace au PS3Lib qui servent
Screen :

La ToggleSwitch :
Code:
if (toggleSwitch1.IsOn == true)
{
PS3.ChangeAPI(SelectAPI.ControlConsole); // toggleswitch a gauche
}
else
{
PS3.ChangeAPI(SelectAPI.TargetManager); // toggleswitch a droite
}
Le Changeur de CID :
Code:
PS3.CCAPI.SetConsoleID(textEdit3.Text);
PS3.CCAPI.Notify(CCAPI.NotifyIcon.FINGER, "ConsoleID Changer ");
Option de la Console :
Code:
if (this.comboBoxEdit1.SelectedIndex >= 0)[/I][/U][/B][/I][/B][/I][/B]
[B][I][B][I][B][U][I]
{
if (this.comboBoxEdit1.SelectedIndex == 0)
{
}
else if (this.comboBoxEdit1.SelectedIndex == 1)
{
PS3.CCAPI.ShutDown(PS3Lib.CCAPI.RebootFlags.ShutDown);
}
else if (this.comboBoxEdit1.SelectedIndex == 2)
{
PS3.CCAPI.ShutDown(PS3Lib.CCAPI.RebootFlags.SoftReboot);
}
else if (this.comboBoxEdit1.SelectedIndex == 3)
{
PS3.CCAPI.ShutDown(PS3Lib.CCAPI.RebootFlags.HardReboot);
}
else if (this.comboBoxEdit1.SelectedIndex == 4)
{
PS3.DisconnectTarget();
}
[B][U][I]}
Notification :
Code:
PS3.CCAPI.Notify(CCAPI.NotifyIcon.FINGER, "message voulue ;) ");
Credits : FMT | TiGGe | iHax
PS : Merci Baptiste Pour la faute a la toggle switch
Dernière édition: