Example #1
0
 private void SimpleGallery_fileChangedNotifer(object sender, EventArgs e)
 {
     if (InvokeRequired && System.Diagnostics.Debugger.IsAttached)
     {
         MessageBox.Show("file watcher, Invoke needed");
     }
     AllImages = new List <ChitraKiAlbumAurVivaran>();
     waiter    = new Waiter();
     imageIO.Wifi_CheckForImages(AllImages, InvokeRequired, WebSiteSearchDir,
                                 this, waiter, ReportProgress, Done);
 }
Example #2
0
 private void CheckForImages()
 {
     if (IamAlreadyCalledOnce)
     {
         return;
     }
     IamAlreadyCalledOnce = true;
     AllImages            = new List <TheImage>();
     imageIO.Wifi_CheckForImages(AllImages, InvokeRequired, ConfigurationManager.AppSettings["WebSiteSearchDir"],
                                 this, waiter, ReportProgressForImageSearch, Done);
 }
 private void SimpleGallery_fileChangedNotifer(object sender, EventArgs e)
 {
     if (InvokeRequired && System.Diagnostics.Debugger.IsAttached)
     {
         MessageBox.Show("file watcher, Invoke needed");
     }
     AllImages = new List <TheImage>();
     waiter    = new Waiter();
     imageIO.Wifi_CheckForImages(AllImages, InvokeRequired, ConfigurationManager.AppSettings["WebSiteSearchDir"],
                                 this, waiter, ReportProgress, Done);
 }