Ejemplo n.º 1
0
    //called from gui/chronojump.cs
    //done here because sending the SP is problematic on windows
    public string CheckAuto(out bool isChronopicAuto)
    {
        ChronopicAuto ca = new ChronopicAutoCheck();

        string str = ca.Read(sp);

        isChronopicAuto = ca.IsChronopicAuto;

        return(str);
    }
Ejemplo n.º 2
0
    public bool StoredCanCaptureContacts;     //store a boolean in order to read info faster

    //<-----ConnectContactsReal END -----


    //called from gui/chronojump.cs
    //done here because sending the SP is problematic on windows
    public string CheckAuto(out bool isChronopicAuto)
    {
        ChronopicAuto ca = new ChronopicAutoCheck();

        string str = "";

        if (cpDoing == 1)
        {
            str = ca.Read(sp);
        }
        else
        {
            str = ca.Read(sp2);
        }

        isChronopicAuto = ca.IsChronopicAuto;

        return(str);
    }
Ejemplo n.º 3
0
    //<-----ConnectContactsReal END -----
    //called from gui/chronojump.cs
    //done here because sending the SP is problematic on windows
    public string CheckAuto(out bool isChronopicAuto)
    {
        ChronopicAuto ca = new ChronopicAutoCheck();

        string str = "";
            if(cpDoing == 1)
            str = ca.Read(sp);
        else
            str = ca.Read(sp2);

        isChronopicAuto = ca.IsChronopicAuto;

        return str;
    }
Ejemplo n.º 4
0
 private void on_button_auto_check_auto_clicked(object o, EventArgs args)
 {
     ChronopicAuto ca = new ChronopicAutoCheck();
     label_auto_check.Text = ca.Read(sp);
 }
Ejemplo n.º 5
0
    private void on_button_auto_check_auto_clicked(object o, EventArgs args)
    {
        ChronopicAuto ca = new ChronopicAutoCheck();

        label_auto_check.Text = ca.Read(sp);
    }