//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); }
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); }
//<-----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; }
private void on_button_auto_check_auto_clicked(object o, EventArgs args) { ChronopicAuto ca = new ChronopicAutoCheck(); label_auto_check.Text = ca.Read(sp); }