- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            if (this.cbDocumentComleted.Checked) WriteText("DocumentCompleted " + e.Url.ToString()); ;
            if (e.Url.ToString() == "about:blank") return;
            
            this.myCountCompleted++;
            
            if ((this.myCurrentBootState == BootState.FirstBoot) && (this.myCountCompleted == 2))
            {
                this.myCountCompleted = 0;
		FirstBoot();
            }
            if((this.myCurrentBootState == BootState.BootAfterChangePageSize) && (this.myCountCompleted == 2))
            {
                this.myCountCompleted = 0;
                this.myFirstAppStart = false;
                this.timer3.Start();
            }
            if ((this.myCurrentBootState == BootState.BootAfterCapcha) && (this.myCountCompleted == 2))
            {
                this.myCountCompleted = 0;
                this.timer1.Start();
            }
            if ((this.myCurrentBootState == BootState.BootAfterNavigation) && (this.myCountCompleted == 2))
            {
                this.myCountCompleted = 0;
                this.timer2.Start();
            }
        }
                                 
        
Комментарии (0) RSS
Добавить комментарий