Esempio n. 1
0
        public Login(ParentForm pForm)
        {
            InitializeComponent();

            currentParentForm = pForm;

            this.processFBLoginLogOut();
            this.processTwitterLoginStage();
        }
Esempio n. 2
0
 public MainForm(ParentForm parent)
 {
     InitializeComponent();
     posts = new List<Post>();
     postsToLVI = new Dictionary<int, Post>();
     usersToIL = new Dictionary<string, string>();
     this.currentParent = parent;
     FBsince = 0;
     TWsince = -1;
     timer = new Timer();
     timer.Tick += new EventHandler(timer_Tick);
     timer.Interval = 10000;
     timer.Start();
     FBisSyncing = false;
     TWisSyncing = false;
 }