Changeset 1801


Ignore:
Timestamp:
2/10/2010 8:32:33 AM (2 years ago)
Author:
lowjoel
Message:

Updated to r1800 on trunk.

Location:
branches/eraser6/CodeReview
Files:
12 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/eraser6/CodeReview

  • branches/eraser6/CodeReview/Eraser.Manager/DirectExecutor.cs

    r1795 r1801  
    743743                         fsManager.DeleteFolder(info); 
    744744                }; 
    745                 eraseEmptySubFolders(new DirectoryInfo(fldr.Path)); 
     745 
     746                DirectoryInfo directory = new DirectoryInfo(fldr.Path); 
     747                foreach (DirectoryInfo subDir in directory.GetDirectories()) 
     748                    eraseEmptySubFolders(subDir); 
    746749 
    747750                if (fldr.DeleteIfEmpty) 
    748751                { 
    749                     DirectoryInfo info = new DirectoryInfo(fldr.Path); 
    750                     task.OnProgressChanged(target, 
    751                         new ProgressChangedEventArgs(step, 
    752                             new TaskProgressChangedEventArgs(info.FullName, 0, 0))); 
    753                     fsManager.DeleteFolder(info); 
     752                    //See if this is the root of a volume. 
     753                    bool isVolumeRoot = directory.Parent == null; 
     754                    foreach (VolumeInfo volume in VolumeInfo.Volumes) 
     755                        foreach (string mountPoint in volume.MountPoints) 
     756                            if (directory.FullName == mountPoint) 
     757                                isVolumeRoot = true; 
     758 
     759                    //If the folder is a mount point, then don't delete it. If it isn't, 
     760                    //search for files under the folder to see if it is empty. 
     761                    if (!isVolumeRoot && directory.Exists && 
     762                        directory.GetFiles("*", SearchOption.AllDirectories).Length == 0) 
     763                    { 
     764                        fsManager.DeleteFolder(directory); 
     765                    } 
    754766                } 
    755767            } 
  • branches/eraser6/CodeReview/Eraser.Manager/RemoteExecutor.cs

    r1772 r1801  
    337337            try 
    338338            { 
    339                 client.Connect(500); 
     339                client.Connect(3000); 
    340340            } 
    341341            catch (TimeoutException) 
  • branches/eraser6/CodeReview/Eraser.msbuild

  • branches/eraser6/CodeReview/Eraser/BlackBoxMainForm.it.resx

  • branches/eraser6/CodeReview/Eraser/BlackBoxUploadForm.it.resx

  • branches/eraser6/CodeReview/Eraser/Program.cs

    r1797 r1801  
    396396                        Process eraserInstance = Process.Start( 
    397397                            Assembly.GetExecutingAssembly().Location, "--quiet"); 
     398                        Thread.Sleep(0); 
    398399                        eraserInstance.WaitForInputIdle(); 
    399400 
  • branches/eraser6/CodeReview/Eraser/TaskPropertiesForm.Designer.cs

    r1681 r1801  
    5050        private void InitializeComponent() 
    5151        { 
    52             this.components = new System.ComponentModel.Container(); 
    53             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TaskPropertiesForm)); 
    54             this.nameLbl = new System.Windows.Forms.Label(); 
    55             this.name = new System.Windows.Forms.TextBox(); 
    56             this.eraseLbl = new System.Windows.Forms.Label(); 
    57             this.typeLbl = new System.Windows.Forms.Label(); 
    58             this.typeImmediate = new System.Windows.Forms.RadioButton(); 
    59             this.typeRecurring = new System.Windows.Forms.RadioButton(); 
    60             this.data = new System.Windows.Forms.ListView(); 
    61             this.dataColData = new System.Windows.Forms.ColumnHeader(); 
    62             this.dataColMethod = new System.Windows.Forms.ColumnHeader(); 
    63             this.dataContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); 
    64             this.deleteDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 
    65             this.dataAdd = new System.Windows.Forms.Button(); 
    66             this.ok = new System.Windows.Forms.Button(); 
    67             this.cancel = new System.Windows.Forms.Button(); 
    68             this.container = new System.Windows.Forms.TabControl(); 
    69             this.containerTask = new System.Windows.Forms.TabPage(); 
    70             this.typeManual = new System.Windows.Forms.RadioButton(); 
    71             this.typeRestart = new System.Windows.Forms.RadioButton(); 
    72             this.containerSchedule = new System.Windows.Forms.TabPage(); 
    73             this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); 
    74             this.schedulePattern = new System.Windows.Forms.GroupBox(); 
    75             this.scheduleMonthlyLbl = new System.Windows.Forms.Label(); 
    76             this.scheduleMonthlyDayNumber = new System.Windows.Forms.NumericUpDown(); 
    77             this.scheduleMonthlyFreq = new System.Windows.Forms.NumericUpDown(); 
    78             this.scheduleMonthlyMonthLbl = new System.Windows.Forms.Label(); 
    79             this.scheduleMonthlyEveryLbl = new System.Windows.Forms.Label(); 
    80             this.scheduleWeeklyFreq = new System.Windows.Forms.NumericUpDown(); 
    81             this.scheduleDaily = new System.Windows.Forms.RadioButton(); 
    82             this.scheduleDailyPanel = new System.Windows.Forms.Panel(); 
    83             this.scheduleDailyByDayFreq = new System.Windows.Forms.NumericUpDown(); 
    84             this.scheduleDailyByDay = new System.Windows.Forms.RadioButton(); 
    85             this.scheduleDailyByDayLbl = new System.Windows.Forms.Label(); 
    86             this.scheduleDailyByWeekday = new System.Windows.Forms.RadioButton(); 
    87             this.scheduleWeeklyDays = new System.Windows.Forms.FlowLayoutPanel(); 
    88             this.scheduleWeeklyMonday = new System.Windows.Forms.CheckBox(); 
    89             this.scheduleWeeklyTuesday = new System.Windows.Forms.CheckBox(); 
    90             this.scheduleWeeklyWednesday = new System.Windows.Forms.CheckBox(); 
    91             this.scheduleWeeklyThursday = new System.Windows.Forms.CheckBox(); 
    92             this.scheduleWeeklyFriday = new System.Windows.Forms.CheckBox(); 
    93             this.scheduleWeeklySaturday = new System.Windows.Forms.CheckBox(); 
    94             this.scheduleWeeklySunday = new System.Windows.Forms.CheckBox(); 
    95             this.scheduleWeeklyFreqLbl = new System.Windows.Forms.Label(); 
    96             this.scheduleWeeklyLbl = new System.Windows.Forms.Label(); 
    97             this.scheduleWeekly = new System.Windows.Forms.RadioButton(); 
    98             this.scheduleMonthly = new System.Windows.Forms.RadioButton(); 
    99             this.nonRecurringPanel = new System.Windows.Forms.Panel(); 
    100             this.nonRecurringLbl = new System.Windows.Forms.Label(); 
    101             this.nonRecurringBitmap = new System.Windows.Forms.PictureBox(); 
    102             this.scheduleTimePanel = new System.Windows.Forms.Panel(); 
    103             this.scheduleTime = new System.Windows.Forms.DateTimePicker(); 
    104             this.scheduleTimeLbl = new System.Windows.Forms.Label(); 
    105             this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); 
    106             this.dataContextMenuStrip.SuspendLayout(); 
    107             this.container.SuspendLayout(); 
    108             this.containerTask.SuspendLayout(); 
    109             this.containerSchedule.SuspendLayout(); 
    110             this.tableLayoutPanel1.SuspendLayout(); 
    111             this.schedulePattern.SuspendLayout(); 
    112             ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyDayNumber)).BeginInit(); 
    113             ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyFreq)).BeginInit(); 
    114             ((System.ComponentModel.ISupportInitialize)(this.scheduleWeeklyFreq)).BeginInit(); 
    115             this.scheduleDailyPanel.SuspendLayout(); 
    116             ((System.ComponentModel.ISupportInitialize)(this.scheduleDailyByDayFreq)).BeginInit(); 
    117             this.scheduleWeeklyDays.SuspendLayout(); 
    118             this.nonRecurringPanel.SuspendLayout(); 
    119             ((System.ComponentModel.ISupportInitialize)(this.nonRecurringBitmap)).BeginInit(); 
    120             this.scheduleTimePanel.SuspendLayout(); 
    121             ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 
    122             this.SuspendLayout(); 
    123             //  
    124             // nameLbl 
    125             //  
    126             this.nameLbl.AccessibleDescription = null; 
    127             this.nameLbl.AccessibleName = null; 
    128             resources.ApplyResources(this.nameLbl, "nameLbl"); 
    129             this.errorProvider.SetError(this.nameLbl, resources.GetString("nameLbl.Error")); 
    130             this.nameLbl.Font = null; 
    131             this.errorProvider.SetIconAlignment(this.nameLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nameLbl.IconAlignment")))); 
    132             this.errorProvider.SetIconPadding(this.nameLbl, ((int)(resources.GetObject("nameLbl.IconPadding")))); 
    133             this.nameLbl.Name = "nameLbl"; 
    134             //  
    135             // name 
    136             //  
    137             this.name.AccessibleDescription = null; 
    138             this.name.AccessibleName = null; 
    139             resources.ApplyResources(this.name, "name"); 
    140             this.name.BackgroundImage = null; 
    141             this.errorProvider.SetError(this.name, resources.GetString("name.Error")); 
    142             this.name.Font = null; 
    143             this.errorProvider.SetIconAlignment(this.name, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("name.IconAlignment")))); 
    144             this.errorProvider.SetIconPadding(this.name, ((int)(resources.GetObject("name.IconPadding")))); 
    145             this.name.Name = "name"; 
    146             //  
    147             // eraseLbl 
    148             //  
    149             this.eraseLbl.AccessibleDescription = null; 
    150             this.eraseLbl.AccessibleName = null; 
    151             resources.ApplyResources(this.eraseLbl, "eraseLbl"); 
    152             this.errorProvider.SetError(this.eraseLbl, resources.GetString("eraseLbl.Error")); 
    153             this.eraseLbl.Font = null; 
    154             this.errorProvider.SetIconAlignment(this.eraseLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("eraseLbl.IconAlignment")))); 
    155             this.errorProvider.SetIconPadding(this.eraseLbl, ((int)(resources.GetObject("eraseLbl.IconPadding")))); 
    156             this.eraseLbl.Name = "eraseLbl"; 
    157             //  
    158             // typeLbl 
    159             //  
    160             this.typeLbl.AccessibleDescription = null; 
    161             this.typeLbl.AccessibleName = null; 
    162             resources.ApplyResources(this.typeLbl, "typeLbl"); 
    163             this.errorProvider.SetError(this.typeLbl, resources.GetString("typeLbl.Error")); 
    164             this.typeLbl.Font = null; 
    165             this.errorProvider.SetIconAlignment(this.typeLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("typeLbl.IconAlignment")))); 
    166             this.errorProvider.SetIconPadding(this.typeLbl, ((int)(resources.GetObject("typeLbl.IconPadding")))); 
    167             this.typeLbl.Name = "typeLbl"; 
    168             //  
    169             // typeImmediate 
    170             //  
    171             this.typeImmediate.AccessibleDescription = null; 
    172             this.typeImmediate.AccessibleName = null; 
    173             resources.ApplyResources(this.typeImmediate, "typeImmediate"); 
    174             this.typeImmediate.BackgroundImage = null; 
    175             this.errorProvider.SetError(this.typeImmediate, resources.GetString("typeImmediate.Error")); 
    176             this.typeImmediate.Font = null; 
    177             this.errorProvider.SetIconAlignment(this.typeImmediate, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("typeImmediate.IconAlignment")))); 
    178             this.errorProvider.SetIconPadding(this.typeImmediate, ((int)(resources.GetObject("typeImmediate.IconPadding")))); 
    179             this.typeImmediate.Name = "typeImmediate"; 
    180             this.typeImmediate.UseVisualStyleBackColor = true; 
    181             this.typeImmediate.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
    182             //  
    183             // typeRecurring 
    184             //  
    185             this.typeRecurring.AccessibleDescription = null; 
    186             this.typeRecurring.AccessibleName = null; 
    187             resources.ApplyResources(this.typeRecurring, "typeRecurring"); 
    188             this.typeRecurring.BackgroundImage = null; 
    189             this.errorProvider.SetError(this.typeRecurring, resources.GetString("typeRecurring.Error")); 
    190             this.typeRecurring.Font = null; 
    191             this.errorProvider.SetIconAlignment(this.typeRecurring, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("typeRecurring.IconAlignment")))); 
    192             this.errorProvider.SetIconPadding(this.typeRecurring, ((int)(resources.GetObject("typeRecurring.IconPadding")))); 
    193             this.typeRecurring.Name = "typeRecurring"; 
    194             this.typeRecurring.UseVisualStyleBackColor = true; 
    195             this.typeRecurring.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
    196             //  
    197             // data 
    198             //  
    199             this.data.AccessibleDescription = null; 
    200             this.data.AccessibleName = null; 
    201             resources.ApplyResources(this.data, "data"); 
    202             this.data.BackgroundImage = null; 
    203             this.data.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 
     52            this.components = new System.ComponentModel.Container(); 
     53            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TaskPropertiesForm)); 
     54            this.nameLbl = new System.Windows.Forms.Label(); 
     55            this.name = new System.Windows.Forms.TextBox(); 
     56            this.eraseLbl = new System.Windows.Forms.Label(); 
     57            this.typeLbl = new System.Windows.Forms.Label(); 
     58            this.typeImmediate = new System.Windows.Forms.RadioButton(); 
     59            this.typeRecurring = new System.Windows.Forms.RadioButton(); 
     60            this.data = new System.Windows.Forms.ListView(); 
     61            this.dataColData = new System.Windows.Forms.ColumnHeader(); 
     62            this.dataColMethod = new System.Windows.Forms.ColumnHeader(); 
     63            this.dataContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); 
     64            this.deleteDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 
     65            this.dataAdd = new System.Windows.Forms.Button(); 
     66            this.ok = new System.Windows.Forms.Button(); 
     67            this.cancel = new System.Windows.Forms.Button(); 
     68            this.container = new System.Windows.Forms.TabControl(); 
     69            this.containerTask = new System.Windows.Forms.TabPage(); 
     70            this.typeManual = new System.Windows.Forms.RadioButton(); 
     71            this.typeRestart = new System.Windows.Forms.RadioButton(); 
     72            this.containerSchedule = new System.Windows.Forms.TabPage(); 
     73            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); 
     74            this.schedulePattern = new System.Windows.Forms.GroupBox(); 
     75            this.scheduleMonthlyLbl = new System.Windows.Forms.Label(); 
     76            this.scheduleMonthlyDayNumber = new System.Windows.Forms.NumericUpDown(); 
     77            this.scheduleMonthlyFreq = new System.Windows.Forms.NumericUpDown(); 
     78            this.scheduleMonthlyMonthLbl = new System.Windows.Forms.Label(); 
     79            this.scheduleMonthlyEveryLbl = new System.Windows.Forms.Label(); 
     80            this.scheduleWeeklyFreq = new System.Windows.Forms.NumericUpDown(); 
     81            this.scheduleDaily = new System.Windows.Forms.RadioButton(); 
     82            this.scheduleDailyPanel = new System.Windows.Forms.Panel(); 
     83            this.scheduleDailyByDayFreq = new System.Windows.Forms.NumericUpDown(); 
     84            this.scheduleDailyByDay = new System.Windows.Forms.RadioButton(); 
     85            this.scheduleDailyByDayLbl = new System.Windows.Forms.Label(); 
     86            this.scheduleDailyByWeekday = new System.Windows.Forms.RadioButton(); 
     87            this.scheduleWeeklyDays = new System.Windows.Forms.FlowLayoutPanel(); 
     88            this.scheduleWeeklyMonday = new System.Windows.Forms.CheckBox(); 
     89            this.scheduleWeeklyTuesday = new System.Windows.Forms.CheckBox(); 
     90            this.scheduleWeeklyWednesday = new System.Windows.Forms.CheckBox(); 
     91            this.scheduleWeeklyThursday = new System.Windows.Forms.CheckBox(); 
     92            this.scheduleWeeklyFriday = new System.Windows.Forms.CheckBox(); 
     93            this.scheduleWeeklySaturday = new System.Windows.Forms.CheckBox(); 
     94            this.scheduleWeeklySunday = new System.Windows.Forms.CheckBox(); 
     95            this.scheduleWeeklyFreqLbl = new System.Windows.Forms.Label(); 
     96            this.scheduleWeeklyLbl = new System.Windows.Forms.Label(); 
     97            this.scheduleWeekly = new System.Windows.Forms.RadioButton(); 
     98            this.scheduleMonthly = new System.Windows.Forms.RadioButton(); 
     99            this.nonRecurringPanel = new System.Windows.Forms.Panel(); 
     100            this.nonRecurringLbl = new System.Windows.Forms.Label(); 
     101            this.nonRecurringBitmap = new System.Windows.Forms.PictureBox(); 
     102            this.scheduleTimePanel = new System.Windows.Forms.Panel(); 
     103            this.scheduleTime = new System.Windows.Forms.DateTimePicker(); 
     104            this.scheduleTimeLbl = new System.Windows.Forms.Label(); 
     105            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); 
     106            this.dataContextMenuStrip.SuspendLayout(); 
     107            this.container.SuspendLayout(); 
     108            this.containerTask.SuspendLayout(); 
     109            this.containerSchedule.SuspendLayout(); 
     110            this.tableLayoutPanel1.SuspendLayout(); 
     111            this.schedulePattern.SuspendLayout(); 
     112            ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyDayNumber)).BeginInit(); 
     113            ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyFreq)).BeginInit(); 
     114            ((System.ComponentModel.ISupportInitialize)(this.scheduleWeeklyFreq)).BeginInit(); 
     115            this.scheduleDailyPanel.SuspendLayout(); 
     116            ((System.ComponentModel.ISupportInitialize)(this.scheduleDailyByDayFreq)).BeginInit(); 
     117            this.scheduleWeeklyDays.SuspendLayout(); 
     118            this.nonRecurringPanel.SuspendLayout(); 
     119            ((System.ComponentModel.ISupportInitialize)(this.nonRecurringBitmap)).BeginInit(); 
     120            this.scheduleTimePanel.SuspendLayout(); 
     121            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 
     122            this.SuspendLayout(); 
     123            //  
     124            // nameLbl 
     125            //  
     126            resources.ApplyResources(this.nameLbl, "nameLbl"); 
     127            this.nameLbl.Name = "nameLbl"; 
     128            //  
     129            // name 
     130            //  
     131            resources.ApplyResources(this.name, "name"); 
     132            this.name.Name = "name"; 
     133            //  
     134            // eraseLbl 
     135            //  
     136            resources.ApplyResources(this.eraseLbl, "eraseLbl"); 
     137            this.eraseLbl.Name = "eraseLbl"; 
     138            //  
     139            // typeLbl 
     140            //  
     141            resources.ApplyResources(this.typeLbl, "typeLbl"); 
     142            this.typeLbl.Name = "typeLbl"; 
     143            //  
     144            // typeImmediate 
     145            //  
     146            resources.ApplyResources(this.typeImmediate, "typeImmediate"); 
     147            this.typeImmediate.Name = "typeImmediate"; 
     148            this.typeImmediate.UseVisualStyleBackColor = true; 
     149            this.typeImmediate.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
     150            //  
     151            // typeRecurring 
     152            //  
     153            resources.ApplyResources(this.typeRecurring, "typeRecurring"); 
     154            this.typeRecurring.Name = "typeRecurring"; 
     155            this.typeRecurring.UseVisualStyleBackColor = true; 
     156            this.typeRecurring.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
     157            //  
     158            // data 
     159            //  
     160            resources.ApplyResources(this.data, "data"); 
     161            this.data.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 
    204162            this.dataColData, 
    205163            this.dataColMethod}); 
    206             this.data.ContextMenuStrip = this.dataContextMenuStrip; 
    207             this.errorProvider.SetError(this.data, resources.GetString("data.Error")); 
    208             this.data.Font = null; 
    209             this.data.FullRowSelect = true; 
    210             this.errorProvider.SetIconAlignment(this.data, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("data.IconAlignment")))); 
    211             this.errorProvider.SetIconPadding(this.data, ((int)(resources.GetObject("data.IconPadding")))); 
    212             this.data.MultiSelect = false; 
    213             this.data.Name = "data"; 
    214             this.data.UseCompatibleStateImageBehavior = false; 
    215             this.data.View = System.Windows.Forms.View.Details; 
    216             this.data.ItemActivate += new System.EventHandler(this.data_ItemActivate); 
    217             //  
    218             // dataColData 
    219             //  
    220             resources.ApplyResources(this.dataColData, "dataColData"); 
    221             //  
    222             // dataColMethod 
    223             //  
    224             resources.ApplyResources(this.dataColMethod, "dataColMethod"); 
    225             //  
    226             // dataContextMenuStrip 
    227             //  
    228             this.dataContextMenuStrip.AccessibleDescription = null; 
    229             this.dataContextMenuStrip.AccessibleName = null; 
    230             resources.ApplyResources(this.dataContextMenuStrip, "dataContextMenuStrip"); 
    231             this.dataContextMenuStrip.BackgroundImage = null; 
    232             this.errorProvider.SetError(this.dataContextMenuStrip, resources.GetString("dataContextMenuStrip.Error")); 
    233             this.dataContextMenuStrip.Font = null; 
    234             this.errorProvider.SetIconAlignment(this.dataContextMenuStrip, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("dataContextMenuStrip.IconAlignment")))); 
    235             this.errorProvider.SetIconPadding(this.dataContextMenuStrip, ((int)(resources.GetObject("dataContextMenuStrip.IconPadding")))); 
    236             this.dataContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 
     164            this.data.ContextMenuStrip = this.dataContextMenuStrip; 
     165            this.data.FullRowSelect = true; 
     166            this.data.MultiSelect = false; 
     167            this.data.Name = "data"; 
     168            this.data.UseCompatibleStateImageBehavior = false; 
     169            this.data.View = System.Windows.Forms.View.Details; 
     170            this.data.ItemActivate += new System.EventHandler(this.data_ItemActivate); 
     171            //  
     172            // dataColData 
     173            //  
     174            resources.ApplyResources(this.dataColData, "dataColData"); 
     175            //  
     176            // dataColMethod 
     177            //  
     178            resources.ApplyResources(this.dataColMethod, "dataColMethod"); 
     179            //  
     180            // dataContextMenuStrip 
     181            //  
     182            this.dataContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 
    237183            this.deleteDataToolStripMenuItem}); 
    238             this.dataContextMenuStrip.Name = "dataContextMenuStrip"; 
    239             this.dataContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.dataContextMenuStrip_Opening); 
    240             //  
    241             // deleteDataToolStripMenuItem 
    242             //  
    243             this.deleteDataToolStripMenuItem.AccessibleDescription = null; 
    244             this.deleteDataToolStripMenuItem.AccessibleName = null; 
    245             resources.ApplyResources(this.deleteDataToolStripMenuItem, "deleteDataToolStripMenuItem"); 
    246             this.deleteDataToolStripMenuItem.BackgroundImage = null; 
    247             this.deleteDataToolStripMenuItem.Name = "deleteDataToolStripMenuItem"; 
    248             this.deleteDataToolStripMenuItem.ShortcutKeyDisplayString = null; 
    249             this.deleteDataToolStripMenuItem.Click += new System.EventHandler(this.deleteDataToolStripMenuItem_Click); 
    250             //  
    251             // dataAdd 
    252             //  
    253             this.dataAdd.AccessibleDescription = null; 
    254             this.dataAdd.AccessibleName = null; 
    255             resources.ApplyResources(this.dataAdd, "dataAdd"); 
    256             this.dataAdd.BackgroundImage = null; 
    257             this.errorProvider.SetError(this.dataAdd, resources.GetString("dataAdd.Error")); 
    258             this.dataAdd.Font = null; 
    259             this.errorProvider.SetIconAlignment(this.dataAdd, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("dataAdd.IconAlignment")))); 
    260             this.errorProvider.SetIconPadding(this.dataAdd, ((int)(resources.GetObject("dataAdd.IconPadding")))); 
    261             this.dataAdd.Name = "dataAdd"; 
    262             this.dataAdd.UseVisualStyleBackColor = true; 
    263             this.dataAdd.Click += new System.EventHandler(this.dataAdd_Click); 
    264             //  
    265             // ok 
    266             //  
    267             this.ok.AccessibleDescription = null; 
    268             this.ok.AccessibleName = null; 
    269             resources.ApplyResources(this.ok, "ok"); 
    270             this.ok.BackgroundImage = null; 
    271             this.errorProvider.SetError(this.ok, resources.GetString("ok.Error")); 
    272             this.ok.Font = null; 
    273             this.errorProvider.SetIconAlignment(this.ok, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("ok.IconAlignment")))); 
    274             this.errorProvider.SetIconPadding(this.ok, ((int)(resources.GetObject("ok.IconPadding")))); 
    275             this.ok.Name = "ok"; 
    276             this.ok.UseVisualStyleBackColor = true; 
    277             this.ok.Click += new System.EventHandler(this.ok_Click); 
    278             //  
    279             // cancel 
    280             //  
    281             this.cancel.AccessibleDescription = null; 
    282             this.cancel.AccessibleName = null; 
    283             resources.ApplyResources(this.cancel, "cancel"); 
    284             this.cancel.BackgroundImage = null; 
    285             this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 
    286             this.errorProvider.SetError(this.cancel, resources.GetString("cancel.Error")); 
    287             this.cancel.Font = null; 
    288             this.errorProvider.SetIconAlignment(this.cancel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("cancel.IconAlignment")))); 
    289             this.errorProvider.SetIconPadding(this.cancel, ((int)(resources.GetObject("cancel.IconPadding")))); 
    290             this.cancel.Name = "cancel"; 
    291             this.cancel.UseVisualStyleBackColor = true; 
    292             //  
    293             // container 
    294             //  
    295             this.container.AccessibleDescription = null; 
    296             this.container.AccessibleName = null; 
    297             resources.ApplyResources(this.container, "container"); 
    298             this.container.BackgroundImage = null; 
    299             this.container.Controls.Add(this.containerTask); 
    300             this.container.Controls.Add(this.containerSchedule); 
    301             this.errorProvider.SetError(this.container, resources.GetString("container.Error")); 
    302             this.container.Font = null; 
    303             this.errorProvider.SetIconAlignment(this.container, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("container.IconAlignment")))); 
    304             this.errorProvider.SetIconPadding(this.container, ((int)(resources.GetObject("container.IconPadding")))); 
    305             this.container.Name = "container"; 
    306             this.container.SelectedIndex = 0; 
    307             //  
    308             // containerTask 
    309             //  
    310             this.containerTask.AccessibleDescription = null; 
    311             this.containerTask.AccessibleName = null; 
    312             resources.ApplyResources(this.containerTask, "containerTask"); 
    313             this.containerTask.BackgroundImage = null; 
    314             this.containerTask.Controls.Add(this.typeManual); 
    315             this.containerTask.Controls.Add(this.typeRestart); 
    316             this.containerTask.Controls.Add(this.nameLbl); 
    317             this.containerTask.Controls.Add(this.name); 
    318             this.containerTask.Controls.Add(this.typeLbl); 
    319             this.containerTask.Controls.Add(this.typeImmediate); 
    320             this.containerTask.Controls.Add(this.typeRecurring); 
    321             this.containerTask.Controls.Add(this.eraseLbl); 
    322             this.containerTask.Controls.Add(this.data); 
    323             this.containerTask.Controls.Add(this.dataAdd); 
    324             this.errorProvider.SetError(this.containerTask, resources.GetString("containerTask.Error")); 
    325             this.containerTask.Font = null; 
    326             this.errorProvider.SetIconAlignment(this.containerTask, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("containerTask.IconAlignment")))); 
    327             this.errorProvider.SetIconPadding(this.containerTask, ((int)(resources.GetObject("containerTask.IconPadding")))); 
    328             this.containerTask.Name = "containerTask"; 
    329             this.containerTask.UseVisualStyleBackColor = true; 
    330             //  
    331             // typeManual 
    332             //  
    333             this.typeManual.AccessibleDescription = null; 
    334             this.typeManual.AccessibleName = null; 
    335             resources.ApplyResources(this.typeManual, "typeManual"); 
    336             this.typeManual.BackgroundImage = null; 
    337             this.errorProvider.SetError(this.typeManual, resources.GetString("typeManual.Error")); 
    338             this.typeManual.Font = null; 
    339             this.errorProvider.SetIconAlignment(this.typeManual, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("typeManual.IconAlignment")))); 
    340             this.errorProvider.SetIconPadding(this.typeManual, ((int)(resources.GetObject("typeManual.IconPadding")))); 
    341             this.typeManual.Name = "typeManual"; 
    342             this.typeManual.TabStop = true; 
    343             this.typeManual.UseVisualStyleBackColor = true; 
    344             this.typeManual.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
    345             //  
    346             // typeRestart 
    347             //  
    348             this.typeRestart.AccessibleDescription = null; 
    349             this.typeRestart.AccessibleName = null; 
    350             resources.ApplyResources(this.typeRestart, "typeRestart"); 
    351             this.typeRestart.BackgroundImage = null; 
    352             this.errorProvider.SetError(this.typeRestart, resources.GetString("typeRestart.Error")); 
    353             this.typeRestart.Font = null; 
    354             this.errorProvider.SetIconAlignment(this.typeRestart, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("typeRestart.IconAlignment")))); 
    355             this.errorProvider.SetIconPadding(this.typeRestart, ((int)(resources.GetObject("typeRestart.IconPadding")))); 
    356             this.typeRestart.Name = "typeRestart"; 
    357             this.typeRestart.TabStop = true; 
    358             this.typeRestart.UseVisualStyleBackColor = true; 
    359             //  
    360             // containerSchedule 
    361             //  
    362             this.containerSchedule.AccessibleDescription = null; 
    363             this.containerSchedule.AccessibleName = null; 
    364             resources.ApplyResources(this.containerSchedule, "containerSchedule"); 
    365             this.containerSchedule.BackgroundImage = null; 
    366             this.containerSchedule.Controls.Add(this.tableLayoutPanel1); 
    367             this.errorProvider.SetError(this.containerSchedule, resources.GetString("containerSchedule.Error")); 
    368             this.containerSchedule.Font = null; 
    369             this.errorProvider.SetIconAlignment(this.containerSchedule, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("containerSchedule.IconAlignment")))); 
    370             this.errorProvider.SetIconPadding(this.containerSchedule, ((int)(resources.GetObject("containerSchedule.IconPadding")))); 
    371             this.containerSchedule.Name = "containerSchedule"; 
    372             this.containerSchedule.UseVisualStyleBackColor = true; 
    373             //  
    374             // tableLayoutPanel1 
    375             //  
    376             this.tableLayoutPanel1.AccessibleDescription = null; 
    377             this.tableLayoutPanel1.AccessibleName = null; 
    378             resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); 
    379             this.tableLayoutPanel1.BackgroundImage = null; 
    380             this.tableLayoutPanel1.Controls.Add(this.schedulePattern, 0, 2); 
    381             this.tableLayoutPanel1.Controls.Add(this.nonRecurringPanel, 0, 0); 
    382             this.tableLayoutPanel1.Controls.Add(this.scheduleTimePanel, 0, 1); 
    383             this.errorProvider.SetError(this.tableLayoutPanel1, resources.GetString("tableLayoutPanel1.Error")); 
    384             this.tableLayoutPanel1.Font = null; 
    385             this.errorProvider.SetIconAlignment(this.tableLayoutPanel1, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("tableLayoutPanel1.IconAlignment")))); 
    386             this.errorProvider.SetIconPadding(this.tableLayoutPanel1, ((int)(resources.GetObject("tableLayoutPanel1.IconPadding")))); 
    387             this.tableLayoutPanel1.Name = "tableLayoutPanel1"; 
    388             //  
    389             // schedulePattern 
    390             //  
    391             this.schedulePattern.AccessibleDescription = null; 
    392             this.schedulePattern.AccessibleName = null; 
    393             resources.ApplyResources(this.schedulePattern, "schedulePattern"); 
    394             this.schedulePattern.BackgroundImage = null; 
    395             this.schedulePattern.Controls.Add(this.scheduleMonthlyLbl); 
    396             this.schedulePattern.Controls.Add(this.scheduleMonthlyDayNumber); 
    397             this.schedulePattern.Controls.Add(this.scheduleMonthlyFreq); 
    398             this.schedulePattern.Controls.Add(this.scheduleMonthlyMonthLbl); 
    399             this.schedulePattern.Controls.Add(this.scheduleMonthlyEveryLbl); 
    400             this.schedulePattern.Controls.Add(this.scheduleWeeklyFreq); 
    401             this.schedulePattern.Controls.Add(this.scheduleDaily); 
    402             this.schedulePattern.Controls.Add(this.scheduleDailyPanel); 
    403             this.schedulePattern.Controls.Add(this.scheduleWeeklyDays); 
    404             this.schedulePattern.Controls.Add(this.scheduleWeeklyFreqLbl); 
    405             this.schedulePattern.Controls.Add(this.scheduleWeeklyLbl); 
    406             this.schedulePattern.Controls.Add(this.scheduleWeekly); 
    407             this.schedulePattern.Controls.Add(this.scheduleMonthly); 
    408             this.errorProvider.SetError(this.schedulePattern, resources.GetString("schedulePattern.Error")); 
    409             this.schedulePattern.Font = null; 
    410             this.errorProvider.SetIconAlignment(this.schedulePattern, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("schedulePattern.IconAlignment")))); 
    411             this.errorProvider.SetIconPadding(this.schedulePattern, ((int)(resources.GetObject("schedulePattern.IconPadding")))); 
    412             this.schedulePattern.Name = "schedulePattern"; 
    413             this.schedulePattern.TabStop = false; 
    414             //  
    415             // scheduleMonthlyLbl 
    416             //  
    417             this.scheduleMonthlyLbl.AccessibleDescription = null; 
    418             this.scheduleMonthlyLbl.AccessibleName = null; 
    419             resources.ApplyResources(this.scheduleMonthlyLbl, "scheduleMonthlyLbl"); 
    420             this.errorProvider.SetError(this.scheduleMonthlyLbl, resources.GetString("scheduleMonthlyLbl.Error")); 
    421             this.scheduleMonthlyLbl.Font = null; 
    422             this.errorProvider.SetIconAlignment(this.scheduleMonthlyLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthlyLbl.IconAlignment")))); 
    423             this.errorProvider.SetIconPadding(this.scheduleMonthlyLbl, ((int)(resources.GetObject("scheduleMonthlyLbl.IconPadding")))); 
    424             this.scheduleMonthlyLbl.Name = "scheduleMonthlyLbl"; 
    425             //  
    426             // scheduleMonthlyDayNumber 
    427             //  
    428             this.scheduleMonthlyDayNumber.AccessibleDescription = null; 
    429             this.scheduleMonthlyDayNumber.AccessibleName = null; 
    430             resources.ApplyResources(this.scheduleMonthlyDayNumber, "scheduleMonthlyDayNumber"); 
    431             this.errorProvider.SetError(this.scheduleMonthlyDayNumber, resources.GetString("scheduleMonthlyDayNumber.Error")); 
    432             this.scheduleMonthlyDayNumber.Font = null; 
    433             this.errorProvider.SetIconAlignment(this.scheduleMonthlyDayNumber, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthlyDayNumber.IconAlignment")))); 
    434             this.errorProvider.SetIconPadding(this.scheduleMonthlyDayNumber, ((int)(resources.GetObject("scheduleMonthlyDayNumber.IconPadding")))); 
    435             this.scheduleMonthlyDayNumber.Maximum = new decimal(new int[] { 
     184            this.dataContextMenuStrip.Name = "dataContextMenuStrip"; 
     185            resources.ApplyResources(this.dataContextMenuStrip, "dataContextMenuStrip"); 
     186            this.dataContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.dataContextMenuStrip_Opening); 
     187            //  
     188            // deleteDataToolStripMenuItem 
     189            //  
     190            this.deleteDataToolStripMenuItem.Name = "deleteDataToolStripMenuItem"; 
     191            resources.ApplyResources(this.deleteDataToolStripMenuItem, "deleteDataToolStripMenuItem"); 
     192            this.deleteDataToolStripMenuItem.Click += new System.EventHandler(this.deleteDataToolStripMenuItem_Click); 
     193            //  
     194            // dataAdd 
     195            //  
     196            resources.ApplyResources(this.dataAdd, "dataAdd"); 
     197            this.dataAdd.Name = "dataAdd"; 
     198            this.dataAdd.UseVisualStyleBackColor = true; 
     199            this.dataAdd.Click += new System.EventHandler(this.dataAdd_Click); 
     200            //  
     201            // ok 
     202            //  
     203            resources.ApplyResources(this.ok, "ok"); 
     204            this.ok.Name = "ok"; 
     205            this.ok.UseVisualStyleBackColor = true; 
     206            this.ok.Click += new System.EventHandler(this.ok_Click); 
     207            //  
     208            // cancel 
     209            //  
     210            resources.ApplyResources(this.cancel, "cancel"); 
     211            this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 
     212            this.cancel.Name = "cancel"; 
     213            this.cancel.UseVisualStyleBackColor = true; 
     214            //  
     215            // container 
     216            //  
     217            resources.ApplyResources(this.container, "container"); 
     218            this.container.Controls.Add(this.containerTask); 
     219            this.container.Controls.Add(this.containerSchedule); 
     220            this.container.Name = "container"; 
     221            this.container.SelectedIndex = 0; 
     222            //  
     223            // containerTask 
     224            //  
     225            this.containerTask.Controls.Add(this.typeManual); 
     226            this.containerTask.Controls.Add(this.typeRestart); 
     227            this.containerTask.Controls.Add(this.nameLbl); 
     228            this.containerTask.Controls.Add(this.name); 
     229            this.containerTask.Controls.Add(this.typeLbl); 
     230            this.containerTask.Controls.Add(this.typeImmediate); 
     231            this.containerTask.Controls.Add(this.typeRecurring); 
     232            this.containerTask.Controls.Add(this.eraseLbl); 
     233            this.containerTask.Controls.Add(this.data); 
     234            this.containerTask.Controls.Add(this.dataAdd); 
     235            resources.ApplyResources(this.containerTask, "containerTask"); 
     236            this.containerTask.Name = "containerTask"; 
     237            this.containerTask.UseVisualStyleBackColor = true; 
     238            //  
     239            // typeManual 
     240            //  
     241            resources.ApplyResources(this.typeManual, "typeManual"); 
     242            this.typeManual.Name = "typeManual"; 
     243            this.typeManual.TabStop = true; 
     244            this.typeManual.UseVisualStyleBackColor = true; 
     245            this.typeManual.CheckedChanged += new System.EventHandler(this.taskType_CheckedChanged); 
     246            //  
     247            // typeRestart 
     248            //  
     249            resources.ApplyResources(this.typeRestart, "typeRestart"); 
     250            this.typeRestart.Name = "typeRestart"; 
     251            this.typeRestart.TabStop = true; 
     252            this.typeRestart.UseVisualStyleBackColor = true; 
     253            //  
     254            // containerSchedule 
     255            //  
     256            this.containerSchedule.Controls.Add(this.tableLayoutPanel1); 
     257            resources.ApplyResources(this.containerSchedule, "containerSchedule"); 
     258            this.containerSchedule.Name = "containerSchedule"; 
     259            this.containerSchedule.UseVisualStyleBackColor = true; 
     260            //  
     261            // tableLayoutPanel1 
     262            //  
     263            resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); 
     264            this.tableLayoutPanel1.Controls.Add(this.schedulePattern, 0, 2); 
     265            this.tableLayoutPanel1.Controls.Add(this.nonRecurringPanel, 0, 0); 
     266            this.tableLayoutPanel1.Controls.Add(this.scheduleTimePanel, 0, 1); 
     267            this.tableLayoutPanel1.Name = "tableLayoutPanel1"; 
     268            //  
     269            // schedulePattern 
     270            //  
     271            resources.ApplyResources(this.schedulePattern, "schedulePattern"); 
     272            this.schedulePattern.Controls.Add(this.scheduleMonthlyLbl); 
     273            this.schedulePattern.Controls.Add(this.scheduleMonthlyDayNumber); 
     274            this.schedulePattern.Controls.Add(this.scheduleMonthlyFreq); 
     275            this.schedulePattern.Controls.Add(this.scheduleMonthlyMonthLbl); 
     276            this.schedulePattern.Controls.Add(this.scheduleMonthlyEveryLbl); 
     277            this.schedulePattern.Controls.Add(this.scheduleWeeklyFreq); 
     278            this.schedulePattern.Controls.Add(this.scheduleDaily); 
     279            this.schedulePattern.Controls.Add(this.scheduleDailyPanel); 
     280            this.schedulePattern.Controls.Add(this.scheduleWeeklyDays); 
     281            this.schedulePattern.Controls.Add(this.scheduleWeeklyFreqLbl); 
     282            this.schedulePattern.Controls.Add(this.scheduleWeeklyLbl); 
     283            this.schedulePattern.Controls.Add(this.scheduleWeekly); 
     284            this.schedulePattern.Controls.Add(this.scheduleMonthly); 
     285            this.schedulePattern.Name = "schedulePattern"; 
     286            this.schedulePattern.TabStop = false; 
     287            //  
     288            // scheduleMonthlyLbl 
     289            //  
     290            resources.ApplyResources(this.scheduleMonthlyLbl, "scheduleMonthlyLbl"); 
     291            this.scheduleMonthlyLbl.Name = "scheduleMonthlyLbl"; 
     292            //  
     293            // scheduleMonthlyDayNumber 
     294            //  
     295            resources.ApplyResources(this.scheduleMonthlyDayNumber, "scheduleMonthlyDayNumber"); 
     296            this.scheduleMonthlyDayNumber.Maximum = new decimal(new int[] { 
    436297            31, 
    437298            0, 
    438299            0, 
    439300            0}); 
    440             this.scheduleMonthlyDayNumber.Minimum = new decimal(new int[] { 
    441             1, 
    442             0, 
    443             0, 
    444             0}); 
    445             this.scheduleMonthlyDayNumber.Name = "scheduleMonthlyDayNumber"; 
    446             this.scheduleMonthlyDayNumber.Value = new decimal(new int[] { 
    447             1, 
    448             0, 
    449             0, 
    450             0}); 
    451             //  
    452             // scheduleMonthlyFreq 
    453             //  
    454             this.scheduleMonthlyFreq.AccessibleDescription = null; 
    455             this.scheduleMonthlyFreq.AccessibleName = null; 
    456             resources.ApplyResources(this.scheduleMonthlyFreq, "scheduleMonthlyFreq"); 
    457             this.errorProvider.SetError(this.scheduleMonthlyFreq, resources.GetString("scheduleMonthlyFreq.Error")); 
    458             this.scheduleMonthlyFreq.Font = null; 
    459             this.errorProvider.SetIconAlignment(this.scheduleMonthlyFreq, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthlyFreq.IconAlignment")))); 
    460             this.errorProvider.SetIconPadding(this.scheduleMonthlyFreq, ((int)(resources.GetObject("scheduleMonthlyFreq.IconPadding")))); 
    461             this.scheduleMonthlyFreq.Maximum = new decimal(new int[] { 
     301            this.scheduleMonthlyDayNumber.Minimum = new decimal(new int[] { 
     302            1, 
     303            0, 
     304            0, 
     305            0}); 
     306            this.scheduleMonthlyDayNumber.Name = "scheduleMonthlyDayNumber"; 
     307            this.scheduleMonthlyDayNumber.Value = new decimal(new int[] { 
     308            1, 
     309            0, 
     310            0, 
     311            0}); 
     312            //  
     313            // scheduleMonthlyFreq 
     314            //  
     315            resources.ApplyResources(this.scheduleMonthlyFreq, "scheduleMonthlyFreq"); 
     316            this.scheduleMonthlyFreq.Maximum = new decimal(new int[] { 
    462317            120, 
    463318            0, 
    464319            0, 
    465320            0}); 
    466             this.scheduleMonthlyFreq.Minimum = new decimal(new int[] { 
    467             1, 
    468             0, 
    469             0, 
    470             0}); 
    471             this.scheduleMonthlyFreq.Name = "scheduleMonthlyFreq"; 
    472             this.scheduleMonthlyFreq.Value = new decimal(new int[] { 
    473             1, 
    474             0, 
    475             0, 
    476             0}); 
    477             //  
    478             // scheduleMonthlyMonthLbl 
    479             //  
    480             this.scheduleMonthlyMonthLbl.AccessibleDescription = null; 
    481             this.scheduleMonthlyMonthLbl.AccessibleName = null; 
    482             resources.ApplyResources(this.scheduleMonthlyMonthLbl, "scheduleMonthlyMonthLbl"); 
    483             this.errorProvider.SetError(this.scheduleMonthlyMonthLbl, resources.GetString("scheduleMonthlyMonthLbl.Error")); 
    484             this.scheduleMonthlyMonthLbl.Font = null; 
    485             this.errorProvider.SetIconAlignment(this.scheduleMonthlyMonthLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthlyMonthLbl.IconAlignment")))); 
    486             this.errorProvider.SetIconPadding(this.scheduleMonthlyMonthLbl, ((int)(resources.GetObject("scheduleMonthlyMonthLbl.IconPadding")))); 
    487             this.scheduleMonthlyMonthLbl.Name = "scheduleMonthlyMonthLbl"; 
    488             //  
    489             // scheduleMonthlyEveryLbl 
    490             //  
    491             this.scheduleMonthlyEveryLbl.AccessibleDescription = null; 
    492             this.scheduleMonthlyEveryLbl.AccessibleName = null; 
    493             resources.ApplyResources(this.scheduleMonthlyEveryLbl, "scheduleMonthlyEveryLbl"); 
    494             this.errorProvider.SetError(this.scheduleMonthlyEveryLbl, resources.GetString("scheduleMonthlyEveryLbl.Error")); 
    495             this.scheduleMonthlyEveryLbl.Font = null; 
    496             this.errorProvider.SetIconAlignment(this.scheduleMonthlyEveryLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthlyEveryLbl.IconAlignment")))); 
    497             this.errorProvider.SetIconPadding(this.scheduleMonthlyEveryLbl, ((int)(resources.GetObject("scheduleMonthlyEveryLbl.IconPadding")))); 
    498             this.scheduleMonthlyEveryLbl.Name = "scheduleMonthlyEveryLbl"; 
    499             //  
    500             // scheduleWeeklyFreq 
    501             //  
    502             this.scheduleWeeklyFreq.AccessibleDescription = null; 
    503             this.scheduleWeeklyFreq.AccessibleName = null; 
    504             resources.ApplyResources(this.scheduleWeeklyFreq, "scheduleWeeklyFreq"); 
    505             this.errorProvider.SetError(this.scheduleWeeklyFreq, resources.GetString("scheduleWeeklyFreq.Error")); 
    506             this.scheduleWeeklyFreq.Font = null; 
    507             this.errorProvider.SetIconAlignment(this.scheduleWeeklyFreq, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyFreq.IconAlignment")))); 
    508             this.errorProvider.SetIconPadding(this.scheduleWeeklyFreq, ((int)(resources.GetObject("scheduleWeeklyFreq.IconPadding")))); 
    509             this.scheduleWeeklyFreq.Maximum = new decimal(new int[] { 
     321            this.scheduleMonthlyFreq.Minimum = new decimal(new int[] { 
     322            1, 
     323            0, 
     324            0, 
     325            0}); 
     326            this.scheduleMonthlyFreq.Name = "scheduleMonthlyFreq"; 
     327            this.scheduleMonthlyFreq.Value = new decimal(new int[] { 
     328            1, 
     329            0, 
     330            0, 
     331            0}); 
     332            //  
     333            // scheduleMonthlyMonthLbl 
     334            //  
     335            resources.ApplyResources(this.scheduleMonthlyMonthLbl, "scheduleMonthlyMonthLbl"); 
     336            this.scheduleMonthlyMonthLbl.Name = "scheduleMonthlyMonthLbl"; 
     337            //  
     338            // scheduleMonthlyEveryLbl 
     339            //  
     340            resources.ApplyResources(this.scheduleMonthlyEveryLbl, "scheduleMonthlyEveryLbl"); 
     341            this.scheduleMonthlyEveryLbl.Name = "scheduleMonthlyEveryLbl"; 
     342            //  
     343            // scheduleWeeklyFreq 
     344            //  
     345            resources.ApplyResources(this.scheduleWeeklyFreq, "scheduleWeeklyFreq"); 
     346            this.scheduleWeeklyFreq.Maximum = new decimal(new int[] { 
    510347            104, 
    511348            0, 
    512349            0, 
    513350            0}); 
    514             this.scheduleWeeklyFreq.Minimum = new decimal(new int[] { 
    515             1, 
    516             0, 
    517             0, 
    518             0}); 
    519             this.scheduleWeeklyFreq.Name = "scheduleWeeklyFreq"; 
    520             this.scheduleWeeklyFreq.Value = new decimal(new int[] { 
    521             1, 
    522             0, 
    523             0, 
    524             0}); 
    525             //  
    526             // scheduleDaily 
    527             //  
    528             this.scheduleDaily.AccessibleDescription = null; 
    529             this.scheduleDaily.AccessibleName = null; 
    530             resources.ApplyResources(this.scheduleDaily, "scheduleDaily"); 
    531             this.scheduleDaily.BackgroundImage = null; 
    532             this.errorProvider.SetError(this.scheduleDaily, resources.GetString("scheduleDaily.Error")); 
    533             this.scheduleDaily.Font = null; 
    534             this.errorProvider.SetIconAlignment(this.scheduleDaily, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDaily.IconAlignment")))); 
    535             this.errorProvider.SetIconPadding(this.scheduleDaily, ((int)(resources.GetObject("scheduleDaily.IconPadding")))); 
    536             this.scheduleDaily.Name = "scheduleDaily"; 
    537             this.scheduleDaily.UseVisualStyleBackColor = true; 
    538             this.scheduleDaily.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
    539             //  
    540             // scheduleDailyPanel 
    541             //  
    542             this.scheduleDailyPanel.AccessibleDescription = null; 
    543             this.scheduleDailyPanel.AccessibleName = null; 
    544             resources.ApplyResources(this.scheduleDailyPanel, "scheduleDailyPanel"); 
    545             this.scheduleDailyPanel.BackgroundImage = null; 
    546             this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDayFreq); 
    547             this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDay); 
    548             this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDayLbl); 
    549             this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByWeekday); 
    550             this.errorProvider.SetError(this.scheduleDailyPanel, resources.GetString("scheduleDailyPanel.Error")); 
    551             this.scheduleDailyPanel.Font = null; 
    552             this.errorProvider.SetIconAlignment(this.scheduleDailyPanel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDailyPanel.IconAlignment")))); 
    553             this.errorProvider.SetIconPadding(this.scheduleDailyPanel, ((int)(resources.GetObject("scheduleDailyPanel.IconPadding")))); 
    554             this.scheduleDailyPanel.Name = "scheduleDailyPanel"; 
    555             //  
    556             // scheduleDailyByDayFreq 
    557             //  
    558             this.scheduleDailyByDayFreq.AccessibleDescription = null; 
    559             this.scheduleDailyByDayFreq.AccessibleName = null; 
    560             resources.ApplyResources(this.scheduleDailyByDayFreq, "scheduleDailyByDayFreq"); 
    561             this.errorProvider.SetError(this.scheduleDailyByDayFreq, resources.GetString("scheduleDailyByDayFreq.Error")); 
    562             this.scheduleDailyByDayFreq.Font = null; 
    563             this.errorProvider.SetIconAlignment(this.scheduleDailyByDayFreq, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDailyByDayFreq.IconAlignment")))); 
    564             this.errorProvider.SetIconPadding(this.scheduleDailyByDayFreq, ((int)(resources.GetObject("scheduleDailyByDayFreq.IconPadding")))); 
    565             this.scheduleDailyByDayFreq.Maximum = new decimal(new int[] { 
     351            this.scheduleWeeklyFreq.Minimum = new decimal(new int[] { 
     352            1, 
     353            0, 
     354            0, 
     355            0}); 
     356            this.scheduleWeeklyFreq.Name = "scheduleWeeklyFreq"; 
     357            this.scheduleWeeklyFreq.Value = new decimal(new int[] { 
     358            1, 
     359            0, 
     360            0, 
     361            0}); 
     362            //  
     363            // scheduleDaily 
     364            //  
     365            resources.ApplyResources(this.scheduleDaily, "scheduleDaily"); 
     366            this.scheduleDaily.Name = "scheduleDaily"; 
     367            this.scheduleDaily.UseVisualStyleBackColor = true; 
     368            this.scheduleDaily.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
     369            //  
     370            // scheduleDailyPanel 
     371            //  
     372            resources.ApplyResources(this.scheduleDailyPanel, "scheduleDailyPanel"); 
     373            this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDayFreq); 
     374            this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDay); 
     375            this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByDayLbl); 
     376            this.scheduleDailyPanel.Controls.Add(this.scheduleDailyByWeekday); 
     377            this.scheduleDailyPanel.Name = "scheduleDailyPanel"; 
     378            //  
     379            // scheduleDailyByDayFreq 
     380            //  
     381            resources.ApplyResources(this.scheduleDailyByDayFreq, "scheduleDailyByDayFreq"); 
     382            this.scheduleDailyByDayFreq.Maximum = new decimal(new int[] { 
    566383            366, 
    567384            0, 
    568385            0, 
    569386            0}); 
    570             this.scheduleDailyByDayFreq.Minimum = new decimal(new int[] { 
    571             1, 
    572             0, 
    573             0, 
    574             0}); 
    575             this.scheduleDailyByDayFreq.Name = "scheduleDailyByDayFreq"; 
    576             this.scheduleDailyByDayFreq.Value = new decimal(new int[] { 
    577             1, 
    578             0, 
    579             0, 
    580             0}); 
    581             //  
    582             // scheduleDailyByDay 
    583             //  
    584             this.scheduleDailyByDay.AccessibleDescription = null; 
    585             this.scheduleDailyByDay.AccessibleName = null; 
    586             resources.ApplyResources(this.scheduleDailyByDay, "scheduleDailyByDay"); 
    587             this.scheduleDailyByDay.BackgroundImage = null; 
    588             this.scheduleDailyByDay.Checked = true; 
    589             this.errorProvider.SetError(this.scheduleDailyByDay, resources.GetString("scheduleDailyByDay.Error")); 
    590             this.scheduleDailyByDay.Font = null; 
    591             this.errorProvider.SetIconAlignment(this.scheduleDailyByDay, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDailyByDay.IconAlignment")))); 
    592             this.errorProvider.SetIconPadding(this.scheduleDailyByDay, ((int)(resources.GetObject("scheduleDailyByDay.IconPadding")))); 
    593             this.scheduleDailyByDay.Name = "scheduleDailyByDay"; 
    594             this.scheduleDailyByDay.TabStop = true; 
    595             this.scheduleDailyByDay.UseVisualStyleBackColor = true; 
    596             this.scheduleDailyByDay.CheckedChanged += new System.EventHandler(this.scheduleDailySpan_CheckedChanged); 
    597             //  
    598             // scheduleDailyByDayLbl 
    599             //  
    600             this.scheduleDailyByDayLbl.AccessibleDescription = null; 
    601             this.scheduleDailyByDayLbl.AccessibleName = null; 
    602             resources.ApplyResources(this.scheduleDailyByDayLbl, "scheduleDailyByDayLbl"); 
    603             this.errorProvider.SetError(this.scheduleDailyByDayLbl, resources.GetString("scheduleDailyByDayLbl.Error")); 
    604             this.scheduleDailyByDayLbl.Font = null; 
    605             this.errorProvider.SetIconAlignment(this.scheduleDailyByDayLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDailyByDayLbl.IconAlignment")))); 
    606             this.errorProvider.SetIconPadding(this.scheduleDailyByDayLbl, ((int)(resources.GetObject("scheduleDailyByDayLbl.IconPadding")))); 
    607             this.scheduleDailyByDayLbl.Name = "scheduleDailyByDayLbl"; 
    608             //  
    609             // scheduleDailyByWeekday 
    610             //  
    611             this.scheduleDailyByWeekday.AccessibleDescription = null; 
    612             this.scheduleDailyByWeekday.AccessibleName = null; 
    613             resources.ApplyResources(this.scheduleDailyByWeekday, "scheduleDailyByWeekday"); 
    614             this.scheduleDailyByWeekday.BackgroundImage = null; 
    615             this.errorProvider.SetError(this.scheduleDailyByWeekday, resources.GetString("scheduleDailyByWeekday.Error")); 
    616             this.scheduleDailyByWeekday.Font = null; 
    617             this.errorProvider.SetIconAlignment(this.scheduleDailyByWeekday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleDailyByWeekday.IconAlignment")))); 
    618             this.errorProvider.SetIconPadding(this.scheduleDailyByWeekday, ((int)(resources.GetObject("scheduleDailyByWeekday.IconPadding")))); 
    619             this.scheduleDailyByWeekday.Name = "scheduleDailyByWeekday"; 
    620             this.scheduleDailyByWeekday.UseVisualStyleBackColor = true; 
    621             this.scheduleDailyByWeekday.CheckedChanged += new System.EventHandler(this.scheduleDailySpan_CheckedChanged); 
    622             //  
    623             // scheduleWeeklyDays 
    624             //  
    625             this.scheduleWeeklyDays.AccessibleDescription = null; 
    626             this.scheduleWeeklyDays.AccessibleName = null; 
    627             resources.ApplyResources(this.scheduleWeeklyDays, "scheduleWeeklyDays"); 
    628             this.scheduleWeeklyDays.BackgroundImage = null; 
    629             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyMonday); 
    630             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyTuesday); 
    631             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyWednesday); 
    632             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyThursday); 
    633             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyFriday); 
    634             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklySaturday); 
    635             this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklySunday); 
    636             this.errorProvider.SetError(this.scheduleWeeklyDays, resources.GetString("scheduleWeeklyDays.Error")); 
    637             this.scheduleWeeklyDays.Font = null; 
    638             this.errorProvider.SetIconAlignment(this.scheduleWeeklyDays, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyDays.IconAlignment")))); 
    639             this.errorProvider.SetIconPadding(this.scheduleWeeklyDays, ((int)(resources.GetObject("scheduleWeeklyDays.IconPadding")))); 
    640             this.scheduleWeeklyDays.Name = "scheduleWeeklyDays"; 
    641             //  
    642             // scheduleWeeklyMonday 
    643             //  
    644             this.scheduleWeeklyMonday.AccessibleDescription = null; 
    645             this.scheduleWeeklyMonday.AccessibleName = null; 
    646             resources.ApplyResources(this.scheduleWeeklyMonday, "scheduleWeeklyMonday"); 
    647             this.scheduleWeeklyMonday.BackgroundImage = null; 
    648             this.errorProvider.SetError(this.scheduleWeeklyMonday, resources.GetString("scheduleWeeklyMonday.Error")); 
    649             this.scheduleWeeklyMonday.Font = null; 
    650             this.errorProvider.SetIconAlignment(this.scheduleWeeklyMonday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyMonday.IconAlignment")))); 
    651             this.errorProvider.SetIconPadding(this.scheduleWeeklyMonday, ((int)(resources.GetObject("scheduleWeeklyMonday.IconPadding")))); 
    652             this.scheduleWeeklyMonday.Name = "scheduleWeeklyMonday"; 
    653             this.scheduleWeeklyMonday.UseVisualStyleBackColor = true; 
    654             //  
    655             // scheduleWeeklyTuesday 
    656             //  
    657             this.scheduleWeeklyTuesday.AccessibleDescription = null; 
    658             this.scheduleWeeklyTuesday.AccessibleName = null; 
    659             resources.ApplyResources(this.scheduleWeeklyTuesday, "scheduleWeeklyTuesday"); 
    660             this.scheduleWeeklyTuesday.BackgroundImage = null; 
    661             this.errorProvider.SetError(this.scheduleWeeklyTuesday, resources.GetString("scheduleWeeklyTuesday.Error")); 
    662             this.scheduleWeeklyTuesday.Font = null; 
    663             this.errorProvider.SetIconAlignment(this.scheduleWeeklyTuesday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyTuesday.IconAlignment")))); 
    664             this.errorProvider.SetIconPadding(this.scheduleWeeklyTuesday, ((int)(resources.GetObject("scheduleWeeklyTuesday.IconPadding")))); 
    665             this.scheduleWeeklyTuesday.Name = "scheduleWeeklyTuesday"; 
    666             this.scheduleWeeklyTuesday.UseVisualStyleBackColor = true; 
    667             //  
    668             // scheduleWeeklyWednesday 
    669             //  
    670             this.scheduleWeeklyWednesday.AccessibleDescription = null; 
    671             this.scheduleWeeklyWednesday.AccessibleName = null; 
    672             resources.ApplyResources(this.scheduleWeeklyWednesday, "scheduleWeeklyWednesday"); 
    673             this.scheduleWeeklyWednesday.BackgroundImage = null; 
    674             this.errorProvider.SetError(this.scheduleWeeklyWednesday, resources.GetString("scheduleWeeklyWednesday.Error")); 
    675             this.scheduleWeeklyWednesday.Font = null; 
    676             this.errorProvider.SetIconAlignment(this.scheduleWeeklyWednesday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyWednesday.IconAlignment")))); 
    677             this.errorProvider.SetIconPadding(this.scheduleWeeklyWednesday, ((int)(resources.GetObject("scheduleWeeklyWednesday.IconPadding")))); 
    678             this.scheduleWeeklyWednesday.Name = "scheduleWeeklyWednesday"; 
    679             this.scheduleWeeklyWednesday.UseVisualStyleBackColor = true; 
    680             //  
    681             // scheduleWeeklyThursday 
    682             //  
    683             this.scheduleWeeklyThursday.AccessibleDescription = null; 
    684             this.scheduleWeeklyThursday.AccessibleName = null; 
    685             resources.ApplyResources(this.scheduleWeeklyThursday, "scheduleWeeklyThursday"); 
    686             this.scheduleWeeklyThursday.BackgroundImage = null; 
    687             this.errorProvider.SetError(this.scheduleWeeklyThursday, resources.GetString("scheduleWeeklyThursday.Error")); 
    688             this.scheduleWeeklyThursday.Font = null; 
    689             this.errorProvider.SetIconAlignment(this.scheduleWeeklyThursday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyThursday.IconAlignment")))); 
    690             this.errorProvider.SetIconPadding(this.scheduleWeeklyThursday, ((int)(resources.GetObject("scheduleWeeklyThursday.IconPadding")))); 
    691             this.scheduleWeeklyThursday.Name = "scheduleWeeklyThursday"; 
    692             this.scheduleWeeklyThursday.UseVisualStyleBackColor = true; 
    693             //  
    694             // scheduleWeeklyFriday 
    695             //  
    696             this.scheduleWeeklyFriday.AccessibleDescription = null; 
    697             this.scheduleWeeklyFriday.AccessibleName = null; 
    698             resources.ApplyResources(this.scheduleWeeklyFriday, "scheduleWeeklyFriday"); 
    699             this.scheduleWeeklyFriday.BackgroundImage = null; 
    700             this.errorProvider.SetError(this.scheduleWeeklyFriday, resources.GetString("scheduleWeeklyFriday.Error")); 
    701             this.scheduleWeeklyFriday.Font = null; 
    702             this.errorProvider.SetIconAlignment(this.scheduleWeeklyFriday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyFriday.IconAlignment")))); 
    703             this.errorProvider.SetIconPadding(this.scheduleWeeklyFriday, ((int)(resources.GetObject("scheduleWeeklyFriday.IconPadding")))); 
    704             this.scheduleWeeklyFriday.Name = "scheduleWeeklyFriday"; 
    705             this.scheduleWeeklyFriday.UseVisualStyleBackColor = true; 
    706             //  
    707             // scheduleWeeklySaturday 
    708             //  
    709             this.scheduleWeeklySaturday.AccessibleDescription = null; 
    710             this.scheduleWeeklySaturday.AccessibleName = null; 
    711             resources.ApplyResources(this.scheduleWeeklySaturday, "scheduleWeeklySaturday"); 
    712             this.scheduleWeeklySaturday.BackgroundImage = null; 
    713             this.errorProvider.SetError(this.scheduleWeeklySaturday, resources.GetString("scheduleWeeklySaturday.Error")); 
    714             this.scheduleWeeklySaturday.Font = null; 
    715             this.errorProvider.SetIconAlignment(this.scheduleWeeklySaturday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklySaturday.IconAlignment")))); 
    716             this.errorProvider.SetIconPadding(this.scheduleWeeklySaturday, ((int)(resources.GetObject("scheduleWeeklySaturday.IconPadding")))); 
    717             this.scheduleWeeklySaturday.Name = "scheduleWeeklySaturday"; 
    718             this.scheduleWeeklySaturday.UseVisualStyleBackColor = true; 
    719             //  
    720             // scheduleWeeklySunday 
    721             //  
    722             this.scheduleWeeklySunday.AccessibleDescription = null; 
    723             this.scheduleWeeklySunday.AccessibleName = null; 
    724             resources.ApplyResources(this.scheduleWeeklySunday, "scheduleWeeklySunday"); 
    725             this.scheduleWeeklySunday.BackgroundImage = null; 
    726             this.errorProvider.SetError(this.scheduleWeeklySunday, resources.GetString("scheduleWeeklySunday.Error")); 
    727             this.scheduleWeeklySunday.Font = null; 
    728             this.errorProvider.SetIconAlignment(this.scheduleWeeklySunday, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklySunday.IconAlignment")))); 
    729             this.errorProvider.SetIconPadding(this.scheduleWeeklySunday, ((int)(resources.GetObject("scheduleWeeklySunday.IconPadding")))); 
    730             this.scheduleWeeklySunday.Name = "scheduleWeeklySunday"; 
    731             this.scheduleWeeklySunday.UseVisualStyleBackColor = true; 
    732             //  
    733             // scheduleWeeklyFreqLbl 
    734             //  
    735             this.scheduleWeeklyFreqLbl.AccessibleDescription = null; 
    736             this.scheduleWeeklyFreqLbl.AccessibleName = null; 
    737             resources.ApplyResources(this.scheduleWeeklyFreqLbl, "scheduleWeeklyFreqLbl"); 
    738             this.errorProvider.SetError(this.scheduleWeeklyFreqLbl, resources.GetString("scheduleWeeklyFreqLbl.Error")); 
    739             this.scheduleWeeklyFreqLbl.Font = null; 
    740             this.errorProvider.SetIconAlignment(this.scheduleWeeklyFreqLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyFreqLbl.IconAlignment")))); 
    741             this.errorProvider.SetIconPadding(this.scheduleWeeklyFreqLbl, ((int)(resources.GetObject("scheduleWeeklyFreqLbl.IconPadding")))); 
    742             this.scheduleWeeklyFreqLbl.Name = "scheduleWeeklyFreqLbl"; 
    743             //  
    744             // scheduleWeeklyLbl 
    745             //  
    746             this.scheduleWeeklyLbl.AccessibleDescription = null; 
    747             this.scheduleWeeklyLbl.AccessibleName = null; 
    748             resources.ApplyResources(this.scheduleWeeklyLbl, "scheduleWeeklyLbl"); 
    749             this.errorProvider.SetError(this.scheduleWeeklyLbl, resources.GetString("scheduleWeeklyLbl.Error")); 
    750             this.scheduleWeeklyLbl.Font = null; 
    751             this.errorProvider.SetIconAlignment(this.scheduleWeeklyLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeeklyLbl.IconAlignment")))); 
    752             this.errorProvider.SetIconPadding(this.scheduleWeeklyLbl, ((int)(resources.GetObject("scheduleWeeklyLbl.IconPadding")))); 
    753             this.scheduleWeeklyLbl.Name = "scheduleWeeklyLbl"; 
    754             //  
    755             // scheduleWeekly 
    756             //  
    757             this.scheduleWeekly.AccessibleDescription = null; 
    758             this.scheduleWeekly.AccessibleName = null; 
    759             resources.ApplyResources(this.scheduleWeekly, "scheduleWeekly"); 
    760             this.scheduleWeekly.BackgroundImage = null; 
    761             this.errorProvider.SetError(this.scheduleWeekly, resources.GetString("scheduleWeekly.Error")); 
    762             this.scheduleWeekly.Font = null; 
    763             this.errorProvider.SetIconAlignment(this.scheduleWeekly, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleWeekly.IconAlignment")))); 
    764             this.errorProvider.SetIconPadding(this.scheduleWeekly, ((int)(resources.GetObject("scheduleWeekly.IconPadding")))); 
    765             this.scheduleWeekly.Name = "scheduleWeekly"; 
    766             this.scheduleWeekly.UseVisualStyleBackColor = true; 
    767             this.scheduleWeekly.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
    768             //  
    769             // scheduleMonthly 
    770             //  
    771             this.scheduleMonthly.AccessibleDescription = null; 
    772             this.scheduleMonthly.AccessibleName = null; 
    773             resources.ApplyResources(this.scheduleMonthly, "scheduleMonthly"); 
    774             this.scheduleMonthly.BackgroundImage = null; 
    775             this.errorProvider.SetError(this.scheduleMonthly, resources.GetString("scheduleMonthly.Error")); 
    776             this.scheduleMonthly.Font = null; 
    777             this.errorProvider.SetIconAlignment(this.scheduleMonthly, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleMonthly.IconAlignment")))); 
    778             this.errorProvider.SetIconPadding(this.scheduleMonthly, ((int)(resources.GetObject("scheduleMonthly.IconPadding")))); 
    779             this.scheduleMonthly.Name = "scheduleMonthly"; 
    780             this.scheduleMonthly.TabStop = true; 
    781             this.scheduleMonthly.UseVisualStyleBackColor = true; 
    782             this.scheduleMonthly.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
    783             //  
    784             // nonRecurringPanel 
    785             //  
    786             this.nonRecurringPanel.AccessibleDescription = null; 
    787             this.nonRecurringPanel.AccessibleName = null; 
    788             resources.ApplyResources(this.nonRecurringPanel, "nonRecurringPanel"); 
    789             this.nonRecurringPanel.BackgroundImage = null; 
    790             this.nonRecurringPanel.Controls.Add(this.nonRecurringLbl); 
    791             this.nonRecurringPanel.Controls.Add(this.nonRecurringBitmap); 
    792             this.errorProvider.SetError(this.nonRecurringPanel, resources.GetString("nonRecurringPanel.Error")); 
    793             this.nonRecurringPanel.Font = null; 
    794             this.errorProvider.SetIconAlignment(this.nonRecurringPanel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nonRecurringPanel.IconAlignment")))); 
    795             this.errorProvider.SetIconPadding(this.nonRecurringPanel, ((int)(resources.GetObject("nonRecurringPanel.IconPadding")))); 
    796             this.nonRecurringPanel.Name = "nonRecurringPanel"; 
    797             //  
    798             // nonRecurringLbl 
    799             //  
    800             this.nonRecurringLbl.AccessibleDescription = null; 
    801             this.nonRecurringLbl.AccessibleName = null; 
    802             resources.ApplyResources(this.nonRecurringLbl, "nonRecurringLbl"); 
    803             this.errorProvider.SetError(this.nonRecurringLbl, resources.GetString("nonRecurringLbl.Error")); 
    804             this.nonRecurringLbl.Font = null; 
    805             this.errorProvider.SetIconAlignment(this.nonRecurringLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nonRecurringLbl.IconAlignment")))); 
    806             this.errorProvider.SetIconPadding(this.nonRecurringLbl, ((int)(resources.GetObject("nonRecurringLbl.IconPadding")))); 
    807             this.nonRecurringLbl.Name = "nonRecurringLbl"; 
    808             //  
    809             // nonRecurringBitmap 
    810             //  
    811             this.nonRecurringBitmap.AccessibleDescription = null; 
    812             this.nonRecurringBitmap.AccessibleName = null; 
    813             resources.ApplyResources(this.nonRecurringBitmap, "nonRecurringBitmap"); 
    814             this.nonRecurringBitmap.BackgroundImage = null; 
    815             this.errorProvider.SetError(this.nonRecurringBitmap, resources.GetString("nonRecurringBitmap.Error")); 
    816             this.nonRecurringBitmap.Font = null; 
    817             this.errorProvider.SetIconAlignment(this.nonRecurringBitmap, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("nonRecurringBitmap.IconAlignment")))); 
    818             this.errorProvider.SetIconPadding(this.nonRecurringBitmap, ((int)(resources.GetObject("nonRecurringBitmap.IconPadding")))); 
    819             this.nonRecurringBitmap.Image = global::Eraser.Properties.Resources.Information; 
    820             this.nonRecurringBitmap.ImageLocation = null; 
    821             this.nonRecurringBitmap.Name = "nonRecurringBitmap"; 
    822             this.nonRecurringBitmap.TabStop = false; 
    823             //  
    824             // scheduleTimePanel 
    825             //  
    826             this.scheduleTimePanel.AccessibleDescription = null; 
    827             this.scheduleTimePanel.AccessibleName = null; 
    828             resources.ApplyResources(this.scheduleTimePanel, "scheduleTimePanel"); 
    829             this.scheduleTimePanel.BackgroundImage = null; 
    830             this.scheduleTimePanel.Controls.Add(this.scheduleTime); 
    831             this.scheduleTimePanel.Controls.Add(this.scheduleTimeLbl); 
    832             this.errorProvider.SetError(this.scheduleTimePanel, resources.GetString("scheduleTimePanel.Error")); 
    833             this.scheduleTimePanel.Font = null; 
    834             this.errorProvider.SetIconAlignment(this.scheduleTimePanel, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleTimePanel.IconAlignment")))); 
    835             this.errorProvider.SetIconPadding(this.scheduleTimePanel, ((int)(resources.GetObject("scheduleTimePanel.IconPadding")))); 
    836             this.scheduleTimePanel.Name = "scheduleTimePanel"; 
    837             //  
    838             // scheduleTime 
    839             //  
    840             this.scheduleTime.AccessibleDescription = null; 
    841             this.scheduleTime.AccessibleName = null; 
    842             resources.ApplyResources(this.scheduleTime, "scheduleTime"); 
    843             this.scheduleTime.BackgroundImage = null; 
    844             this.scheduleTime.CalendarFont = null; 
    845             this.scheduleTime.CustomFormat = null; 
    846             this.errorProvider.SetError(this.scheduleTime, resources.GetString("scheduleTime.Error")); 
    847             this.scheduleTime.Font = null; 
    848             this.scheduleTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom; 
    849             this.errorProvider.SetIconAlignment(this.scheduleTime, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleTime.IconAlignment")))); 
    850             this.errorProvider.SetIconPadding(this.scheduleTime, ((int)(resources.GetObject("scheduleTime.IconPadding")))); 
    851             this.scheduleTime.Name = "scheduleTime"; 
    852             this.scheduleTime.ShowUpDown = true; 
    853             //  
    854             // scheduleTimeLbl 
    855             //  
    856             this.scheduleTimeLbl.AccessibleDescription = null; 
    857             this.scheduleTimeLbl.AccessibleName = null; 
    858             resources.ApplyResources(this.scheduleTimeLbl, "scheduleTimeLbl"); 
    859             this.errorProvider.SetError(this.scheduleTimeLbl, resources.GetString("scheduleTimeLbl.Error")); 
    860             this.scheduleTimeLbl.Font = null; 
    861             this.errorProvider.SetIconAlignment(this.scheduleTimeLbl, ((System.Windows.Forms.ErrorIconAlignment)(resources.GetObject("scheduleTimeLbl.IconAlignment")))); 
    862             this.errorProvider.SetIconPadding(this.scheduleTimeLbl, ((int)(resources.GetObject("scheduleTimeLbl.IconPadding")))); 
    863             this.scheduleTimeLbl.Name = "scheduleTimeLbl"; 
    864             //  
    865             // errorProvider 
    866             //  
    867             this.errorProvider.ContainerControl = this; 
    868             resources.ApplyResources(this.errorProvider, "errorProvider"); 
    869             //  
    870             // TaskPropertiesForm 
    871             //  
    872             this.AcceptButton = this.ok; 
    873             this.AccessibleDescription = null; 
    874             this.AccessibleName = null; 
    875             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 
    876             resources.ApplyResources(this, "$this"); 
    877             this.BackgroundImage = null; 
    878             this.CancelButton = this.cancel; 
    879             this.Controls.Add(this.container); 
    880             this.Controls.Add(this.cancel); 
    881             this.Controls.Add(this.ok); 
    882             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 
    883             this.Icon = null; 
    884             this.MaximizeBox = false; 
    885             this.MinimizeBox = false; 
    886             this.Name = "TaskPropertiesForm"; 
    887             this.ShowInTaskbar = false; 
    888             this.dataContextMenuStrip.ResumeLayout(false); 
    889             this.container.ResumeLayout(false); 
    890             this.containerTask.ResumeLayout(false); 
    891             this.containerTask.PerformLayout(); 
    892             this.containerSchedule.ResumeLayout(false); 
    893             this.tableLayoutPanel1.ResumeLayout(false); 
    894             this.tableLayoutPanel1.PerformLayout(); 
    895             this.schedulePattern.ResumeLayout(false); 
    896             this.schedulePattern.PerformLayout(); 
    897             ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyDayNumber)).EndInit(); 
    898             ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyFreq)).EndInit(); 
    899             ((System.ComponentModel.ISupportInitialize)(this.scheduleWeeklyFreq)).EndInit(); 
    900             this.scheduleDailyPanel.ResumeLayout(false); 
    901             this.scheduleDailyPanel.PerformLayout(); 
    902             ((System.ComponentModel.ISupportInitialize)(this.scheduleDailyByDayFreq)).EndInit(); 
    903             this.scheduleWeeklyDays.ResumeLayout(false); 
    904             this.scheduleWeeklyDays.PerformLayout(); 
    905             this.nonRecurringPanel.ResumeLayout(false); 
    906             ((System.ComponentModel.ISupportInitialize)(this.nonRecurringBitmap)).EndInit(); 
    907             this.scheduleTimePanel.ResumeLayout(false); 
    908             this.scheduleTimePanel.PerformLayout(); 
    909             ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); 
    910             this.ResumeLayout(false); 
     387            this.scheduleDailyByDayFreq.Minimum = new decimal(new int[] { 
     388            1, 
     389            0, 
     390            0, 
     391            0}); 
     392            this.scheduleDailyByDayFreq.Name = "scheduleDailyByDayFreq"; 
     393            this.scheduleDailyByDayFreq.Value = new decimal(new int[] { 
     394            1, 
     395            0, 
     396            0, 
     397            0}); 
     398            //  
     399            // scheduleDailyByDay 
     400            //  
     401            resources.ApplyResources(this.scheduleDailyByDay, "scheduleDailyByDay"); 
     402            this.scheduleDailyByDay.Checked = true; 
     403            this.scheduleDailyByDay.Name = "scheduleDailyByDay"; 
     404            this.scheduleDailyByDay.TabStop = true; 
     405            this.scheduleDailyByDay.UseVisualStyleBackColor = true; 
     406            this.scheduleDailyByDay.CheckedChanged += new System.EventHandler(this.scheduleDailySpan_CheckedChanged); 
     407            //  
     408            // scheduleDailyByDayLbl 
     409            //  
     410            resources.ApplyResources(this.scheduleDailyByDayLbl, "scheduleDailyByDayLbl"); 
     411            this.scheduleDailyByDayLbl.Name = "scheduleDailyByDayLbl"; 
     412            //  
     413            // scheduleDailyByWeekday 
     414            //  
     415            resources.ApplyResources(this.scheduleDailyByWeekday, "scheduleDailyByWeekday"); 
     416            this.scheduleDailyByWeekday.Name = "scheduleDailyByWeekday"; 
     417            this.scheduleDailyByWeekday.UseVisualStyleBackColor = true; 
     418            this.scheduleDailyByWeekday.CheckedChanged += new System.EventHandler(this.scheduleDailySpan_CheckedChanged); 
     419            //  
     420            // scheduleWeeklyDays 
     421            //  
     422            resources.ApplyResources(this.scheduleWeeklyDays, "scheduleWeeklyDays"); 
     423            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyMonday); 
     424            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyTuesday); 
     425            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyWednesday); 
     426            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyThursday); 
     427            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklyFriday); 
     428            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklySaturday); 
     429            this.scheduleWeeklyDays.Controls.Add(this.scheduleWeeklySunday); 
     430            this.scheduleWeeklyDays.Name = "scheduleWeeklyDays"; 
     431            //  
     432            // scheduleWeeklyMonday 
     433            //  
     434            resources.ApplyResources(this.scheduleWeeklyMonday, "scheduleWeeklyMonday"); 
     435            this.scheduleWeeklyMonday.Name = "scheduleWeeklyMonday"; 
     436            this.scheduleWeeklyMonday.UseVisualStyleBackColor = true; 
     437            //  
     438            // scheduleWeeklyTuesday 
     439            //  
     440            resources.ApplyResources(this.scheduleWeeklyTuesday, "scheduleWeeklyTuesday"); 
     441            this.scheduleWeeklyTuesday.Name = "scheduleWeeklyTuesday"; 
     442            this.scheduleWeeklyTuesday.UseVisualStyleBackColor = true; 
     443            //  
     444            // scheduleWeeklyWednesday 
     445            //  
     446            resources.ApplyResources(this.scheduleWeeklyWednesday, "scheduleWeeklyWednesday"); 
     447            this.scheduleWeeklyWednesday.Name = "scheduleWeeklyWednesday"; 
     448            this.scheduleWeeklyWednesday.UseVisualStyleBackColor = true; 
     449            //  
     450            // scheduleWeeklyThursday 
     451            //  
     452            resources.ApplyResources(this.scheduleWeeklyThursday, "scheduleWeeklyThursday"); 
     453            this.scheduleWeeklyThursday.Name = "scheduleWeeklyThursday"; 
     454            this.scheduleWeeklyThursday.UseVisualStyleBackColor = true; 
     455            //  
     456            // scheduleWeeklyFriday 
     457            //  
     458            resources.ApplyResources(this.scheduleWeeklyFriday, "scheduleWeeklyFriday"); 
     459            this.scheduleWeeklyFriday.Name = "scheduleWeeklyFriday"; 
     460            this.scheduleWeeklyFriday.UseVisualStyleBackColor = true; 
     461            //  
     462            // scheduleWeeklySaturday 
     463            //  
     464            resources.ApplyResources(this.scheduleWeeklySaturday, "scheduleWeeklySaturday"); 
     465            this.scheduleWeeklySaturday.Name = "scheduleWeeklySaturday"; 
     466            this.scheduleWeeklySaturday.UseVisualStyleBackColor = true; 
     467            //  
     468            // scheduleWeeklySunday 
     469            //  
     470            resources.ApplyResources(this.scheduleWeeklySunday, "scheduleWeeklySunday"); 
     471            this.scheduleWeeklySunday.Name = "scheduleWeeklySunday"; 
     472            this.scheduleWeeklySunday.UseVisualStyleBackColor = true; 
     473            //  
     474            // scheduleWeeklyFreqLbl 
     475            //  
     476            resources.ApplyResources(this.scheduleWeeklyFreqLbl, "scheduleWeeklyFreqLbl"); 
     477            this.scheduleWeeklyFreqLbl.Name = "scheduleWeeklyFreqLbl"; 
     478            //  
     479            // scheduleWeeklyLbl 
     480            //  
     481            resources.ApplyResources(this.scheduleWeeklyLbl, "scheduleWeeklyLbl"); 
     482            this.scheduleWeeklyLbl.Name = "scheduleWeeklyLbl"; 
     483            //  
     484            // scheduleWeekly 
     485            //  
     486            resources.ApplyResources(this.scheduleWeekly, "scheduleWeekly"); 
     487            this.scheduleWeekly.Name = "scheduleWeekly"; 
     488            this.scheduleWeekly.UseVisualStyleBackColor = true; 
     489            this.scheduleWeekly.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
     490            //  
     491            // scheduleMonthly 
     492            //  
     493            resources.ApplyResources(this.scheduleMonthly, "scheduleMonthly"); 
     494            this.scheduleMonthly.Name = "scheduleMonthly"; 
     495            this.scheduleMonthly.TabStop = true; 
     496            this.scheduleMonthly.UseVisualStyleBackColor = true; 
     497            this.scheduleMonthly.CheckedChanged += new System.EventHandler(this.scheduleSpan_CheckedChanged); 
     498            //  
     499            // nonRecurringPanel 
     500            //  
     501            this.nonRecurringPanel.Controls.Add(this.nonRecurringLbl); 
     502            this.nonRecurringPanel.Controls.Add(this.nonRecurringBitmap); 
     503            resources.ApplyResources(this.nonRecurringPanel, "nonRecurringPanel"); 
     504            this.nonRecurringPanel.Name = "nonRecurringPanel"; 
     505            //  
     506            // nonRecurringLbl 
     507            //  
     508            resources.ApplyResources(this.nonRecurringLbl, "nonRecurringLbl"); 
     509            this.nonRecurringLbl.Name = "nonRecurringLbl"; 
     510            //  
     511            // nonRecurringBitmap 
     512            //  
     513            this.nonRecurringBitmap.Image = global::Eraser.Properties.Resources.Information; 
     514            resources.ApplyResources(this.nonRecurringBitmap, "nonRecurringBitmap"); 
     515            this.nonRecurringBitmap.Name = "nonRecurringBitmap"; 
     516            this.nonRecurringBitmap.TabStop = false; 
     517            //  
     518            // scheduleTimePanel 
     519            //  
     520            resources.ApplyResources(this.scheduleTimePanel, "scheduleTimePanel"); 
     521            this.scheduleTimePanel.Controls.Add(this.scheduleTime); 
     522            this.scheduleTimePanel.Controls.Add(this.scheduleTimeLbl); 
     523            this.scheduleTimePanel.Name = "scheduleTimePanel"; 
     524            //  
     525            // scheduleTime 
     526            //  
     527            this.scheduleTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom; 
     528            resources.ApplyResources(this.scheduleTime, "scheduleTime"); 
     529            this.scheduleTime.Name = "scheduleTime"; 
     530            this.scheduleTime.ShowUpDown = true; 
     531            //  
     532            // scheduleTimeLbl 
     533            //  
     534            resources.ApplyResources(this.scheduleTimeLbl, "scheduleTimeLbl"); 
     535            this.scheduleTimeLbl.Name = "scheduleTimeLbl"; 
     536            //  
     537            // errorProvider 
     538            //  
     539            this.errorProvider.ContainerControl = this; 
     540            //  
     541            // TaskPropertiesForm 
     542            //  
     543            this.AcceptButton = this.ok; 
     544            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 
     545            this.CancelButton = this.cancel; 
     546            resources.ApplyResources(this, "$this"); 
     547            this.Controls.Add(this.container); 
     548            this.Controls.Add(this.cancel); 
     549            this.Controls.Add(this.ok); 
     550            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 
     551            this.MaximizeBox = false; 
     552            this.MinimizeBox = false; 
     553            this.Name = "TaskPropertiesForm"; 
     554            this.ShowInTaskbar = false; 
     555            this.dataContextMenuStrip.ResumeLayout(false); 
     556            this.container.ResumeLayout(false); 
     557            this.containerTask.ResumeLayout(false); 
     558            this.containerTask.PerformLayout(); 
     559            this.containerSchedule.ResumeLayout(false); 
     560            this.tableLayoutPanel1.ResumeLayout(false); 
     561            this.tableLayoutPanel1.PerformLayout(); 
     562            this.schedulePattern.ResumeLayout(false); 
     563            this.schedulePattern.PerformLayout(); 
     564            ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyDayNumber)).EndInit(); 
     565            ((System.ComponentModel.ISupportInitialize)(this.scheduleMonthlyFreq)).EndInit(); 
     566            ((System.ComponentModel.ISupportInitialize)(this.scheduleWeeklyFreq)).EndInit(); 
     567            this.scheduleDailyPanel.ResumeLayout(false); 
     568            this.scheduleDailyPanel.PerformLayout(); 
     569            ((System.ComponentModel.ISupportInitialize)(this.scheduleDailyByDayFreq)).EndInit(); 
     570            this.scheduleWeeklyDays.ResumeLayout(false); 
     571            this.scheduleWeeklyDays.PerformLayout(); 
     572            this.nonRecurringPanel.ResumeLayout(false); 
     573            ((System.ComponentModel.ISupportInitialize)(this.nonRecurringBitmap)).EndInit(); 
     574            this.scheduleTimePanel.ResumeLayout(false); 
     575            this.scheduleTimePanel.PerformLayout(); 
     576            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); 
     577            this.ResumeLayout(false); 
    911578 
    912579        } 
  • branches/eraser6/CodeReview/Eraser/TaskPropertiesForm.it.resx

    r1373 r1801  
    159159  </data> 
    160160  <data name="deleteDataToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> 
    161     <value>169, 22</value> 
     161    <value>170, 22</value> 
    162162  </data> 
    163163  <data name="deleteDataToolStripMenuItem.Text" xml:space="preserve"> 
     
    165165  </data> 
    166166  <data name="dataContextMenuStrip.Size" type="System.Drawing.Size, System.Drawing"> 
    167     <value>170, 48</value> 
     167    <value>171, 26</value> 
    168168  </data> 
    169169  <data name="dataAdd.Text" xml:space="preserve"> 
  • branches/eraser6/CodeReview/Eraser/TaskPropertiesForm.resx

    r1373 r1801  
    118118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
    119119  </resheader> 
     120  <assembly alias="mscorlib" name="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
     121  <data name="nameLbl.AutoSize" type="System.Boolean, mscorlib"> 
     122    <value>True</value> 
     123  </data> 
    120124  <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> 
     125  <data name="nameLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     126    <value>6, 9</value> 
     127  </data> 
     128  <data name="nameLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     129    <value>122, 15</value> 
     130  </data> 
     131  <data name="nameLbl.TabIndex" type="System.Int32, mscorlib"> 
     132    <value>0</value> 
     133  </data> 
     134  <data name="nameLbl.Text" xml:space="preserve"> 
     135    <value>Task name (optional):</value> 
     136  </data> 
     137  <data name="&gt;&gt;nameLbl.Name" xml:space="preserve"> 
     138    <value>nameLbl</value> 
     139  </data> 
     140  <data name="&gt;&gt;nameLbl.Type" xml:space="preserve"> 
     141    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     142  </data> 
     143  <data name="&gt;&gt;nameLbl.Parent" xml:space="preserve"> 
     144    <value>containerTask</value> 
     145  </data> 
     146  <data name="&gt;&gt;nameLbl.ZOrder" xml:space="preserve"> 
     147    <value>2</value> 
     148  </data> 
     149  <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
     150  <data name="name.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     151    <value>Top, Left, Right</value> 
     152  </data> 
     153  <data name="name.Location" type="System.Drawing.Point, System.Drawing"> 
     154    <value>142, 6</value> 
     155  </data> 
     156  <data name="name.Size" type="System.Drawing.Size, System.Drawing"> 
     157    <value>191, 23</value> 
     158  </data> 
     159  <data name="name.TabIndex" type="System.Int32, mscorlib"> 
     160    <value>1</value> 
     161  </data> 
     162  <data name="&gt;&gt;name.Name" xml:space="preserve"> 
     163    <value>name</value> 
     164  </data> 
     165  <data name="&gt;&gt;name.Type" xml:space="preserve"> 
     166    <value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     167  </data> 
     168  <data name="&gt;&gt;name.Parent" xml:space="preserve"> 
     169    <value>containerTask</value> 
     170  </data> 
     171  <data name="&gt;&gt;name.ZOrder" xml:space="preserve"> 
     172    <value>3</value> 
     173  </data> 
     174  <data name="eraseLbl.AutoSize" type="System.Boolean, mscorlib"> 
     175    <value>True</value> 
     176  </data> 
     177  <data name="eraseLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     178    <value>6, 111</value> 
     179  </data> 
     180  <data name="eraseLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     181    <value>78, 15</value> 
     182  </data> 
     183  <data name="eraseLbl.TabIndex" type="System.Int32, mscorlib"> 
     184    <value>7</value> 
     185  </data> 
     186  <data name="eraseLbl.Text" xml:space="preserve"> 
     187    <value>Data to erase:</value> 
     188  </data> 
     189  <data name="&gt;&gt;eraseLbl.Name" xml:space="preserve"> 
     190    <value>eraseLbl</value> 
     191  </data> 
     192  <data name="&gt;&gt;eraseLbl.Type" xml:space="preserve"> 
     193    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     194  </data> 
     195  <data name="&gt;&gt;eraseLbl.Parent" xml:space="preserve"> 
     196    <value>containerTask</value> 
     197  </data> 
     198  <data name="&gt;&gt;eraseLbl.ZOrder" xml:space="preserve"> 
     199    <value>7</value> 
     200  </data> 
     201  <data name="typeLbl.AutoSize" type="System.Boolean, mscorlib"> 
     202    <value>True</value> 
     203  </data> 
     204  <data name="typeLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     205    <value>6, 37</value> 
     206  </data> 
     207  <data name="typeLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     208    <value>63, 15</value> 
     209  </data> 
     210  <data name="typeLbl.TabIndex" type="System.Int32, mscorlib"> 
     211    <value>2</value> 
     212  </data> 
     213  <data name="typeLbl.Text" xml:space="preserve"> 
     214    <value>Task Type:</value> 
     215  </data> 
     216  <data name="&gt;&gt;typeLbl.Name" xml:space="preserve"> 
     217    <value>typeLbl</value> 
     218  </data> 
     219  <data name="&gt;&gt;typeLbl.Type" xml:space="preserve"> 
     220    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     221  </data> 
     222  <data name="&gt;&gt;typeLbl.Parent" xml:space="preserve"> 
     223    <value>containerTask</value> 
     224  </data> 
     225  <data name="&gt;&gt;typeLbl.ZOrder" xml:space="preserve"> 
     226    <value>4</value> 
     227  </data> 
     228  <data name="typeImmediate.AutoSize" type="System.Boolean, mscorlib"> 
     229    <value>True</value> 
     230  </data> 
     231  <data name="typeImmediate.Location" type="System.Drawing.Point, System.Drawing"> 
     232    <value>142, 53</value> 
     233  </data> 
     234  <data name="typeImmediate.Size" type="System.Drawing.Size, System.Drawing"> 
     235    <value>115, 19</value> 
     236  </data> 
     237  <data name="typeImmediate.TabIndex" type="System.Int32, mscorlib"> 
     238    <value>4</value> 
     239  </data> 
     240  <data name="typeImmediate.Text" xml:space="preserve"> 
     241    <value>Run immediately</value> 
     242  </data> 
     243  <data name="&gt;&gt;typeImmediate.Name" xml:space="preserve"> 
     244    <value>typeImmediate</value> 
     245  </data> 
     246  <data name="&gt;&gt;typeImmediate.Type" xml:space="preserve"> 
     247    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     248  </data> 
     249  <data name="&gt;&gt;typeImmediate.Parent" xml:space="preserve"> 
     250    <value>containerTask</value> 
     251  </data> 
     252  <data name="&gt;&gt;typeImmediate.ZOrder" xml:space="preserve"> 
     253    <value>5</value> 
     254  </data> 
     255  <data name="typeRecurring.AutoSize" type="System.Boolean, mscorlib"> 
     256    <value>True</value> 
     257  </data> 
     258  <data name="typeRecurring.Location" type="System.Drawing.Point, System.Drawing"> 
     259    <value>142, 89</value> 
     260  </data> 
     261  <data name="typeRecurring.Size" type="System.Drawing.Size, System.Drawing"> 
     262    <value>76, 19</value> 
     263  </data> 
     264  <data name="typeRecurring.TabIndex" type="System.Int32, mscorlib"> 
     265    <value>6</value> 
     266  </data> 
     267  <data name="typeRecurring.Text" xml:space="preserve"> 
     268    <value>Recurring</value> 
     269  </data> 
     270  <data name="&gt;&gt;typeRecurring.Name" xml:space="preserve"> 
     271    <value>typeRecurring</value> 
     272  </data> 
     273  <data name="&gt;&gt;typeRecurring.Type" xml:space="preserve"> 
     274    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     275  </data> 
     276  <data name="&gt;&gt;typeRecurring.Parent" xml:space="preserve"> 
     277    <value>containerTask</value> 
     278  </data> 
     279  <data name="&gt;&gt;typeRecurring.ZOrder" xml:space="preserve"> 
     280    <value>6</value> 
     281  </data> 
     282  <data name="data.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     283    <value>Top, Bottom, Left, Right</value> 
     284  </data> 
     285  <data name="dataColData.Text" xml:space="preserve"> 
     286    <value>Data Set</value> 
     287  </data> 
     288  <data name="dataColData.Width" type="System.Int32, mscorlib"> 
     289    <value>200</value> 
     290  </data> 
     291  <data name="dataColMethod.Text" xml:space="preserve"> 
     292    <value>Erasure Method</value> 
     293  </data> 
     294  <data name="dataColMethod.Width" type="System.Int32, mscorlib"> 
     295    <value>100</value> 
     296  </data> 
     297  <metadata name="dataContextMenuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 
     298    <value>140, 17</value> 
     299  </metadata> 
     300  <data name="dataContextMenuStrip.Size" type="System.Drawing.Size, System.Drawing"> 
     301    <value>168, 26</value> 
     302  </data> 
     303  <data name="&gt;&gt;dataContextMenuStrip.Name" xml:space="preserve"> 
     304    <value>dataContextMenuStrip</value> 
     305  </data> 
     306  <data name="&gt;&gt;dataContextMenuStrip.Type" xml:space="preserve"> 
     307    <value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     308  </data> 
     309  <data name="data.Location" type="System.Drawing.Point, System.Drawing"> 
     310    <value>9, 129</value> 
     311  </data> 
     312  <data name="data.Size" type="System.Drawing.Size, System.Drawing"> 
     313    <value>324, 218</value> 
     314  </data> 
     315  <data name="data.TabIndex" type="System.Int32, mscorlib"> 
     316    <value>8</value> 
     317  </data> 
     318  <data name="&gt;&gt;data.Name" xml:space="preserve"> 
     319    <value>data</value> 
     320  </data> 
     321  <data name="&gt;&gt;data.Type" xml:space="preserve"> 
     322    <value>System.Windows.Forms.ListView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     323  </data> 
     324  <data name="&gt;&gt;data.Parent" xml:space="preserve"> 
     325    <value>containerTask</value> 
     326  </data> 
     327  <data name="&gt;&gt;data.ZOrder" xml:space="preserve"> 
     328    <value>8</value> 
     329  </data> 
     330  <data name="deleteDataToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> 
     331    <value>167, 22</value> 
     332  </data> 
     333  <data name="deleteDataToolStripMenuItem.Text" xml:space="preserve"> 
     334    <value>Remove from List</value> 
     335  </data> 
     336  <data name="dataAdd.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     337    <value>Bottom, Left</value> 
     338  </data> 
     339  <data name="dataAdd.Location" type="System.Drawing.Point, System.Drawing"> 
     340    <value>9, 353</value> 
     341  </data> 
     342  <data name="dataAdd.Size" type="System.Drawing.Size, System.Drawing"> 
     343    <value>75, 23</value> 
     344  </data> 
     345  <data name="dataAdd.TabIndex" type="System.Int32, mscorlib"> 
     346    <value>9</value> 
     347  </data> 
     348  <data name="dataAdd.Text" xml:space="preserve"> 
     349    <value>Add Data</value> 
     350  </data> 
     351  <data name="&gt;&gt;dataAdd.Name" xml:space="preserve"> 
     352    <value>dataAdd</value> 
     353  </data> 
     354  <data name="&gt;&gt;dataAdd.Type" xml:space="preserve"> 
     355    <value>System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     356  </data> 
     357  <data name="&gt;&gt;dataAdd.Parent" xml:space="preserve"> 
     358    <value>containerTask</value> 
     359  </data> 
     360  <data name="&gt;&gt;dataAdd.ZOrder" xml:space="preserve"> 
     361    <value>9</value> 
     362  </data> 
     363  <data name="ok.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     364    <value>Bottom, Right</value> 
     365  </data> 
     366  <data name="ok.Location" type="System.Drawing.Point, System.Drawing"> 
     367    <value>206, 435</value> 
     368  </data> 
     369  <data name="ok.Size" type="System.Drawing.Size, System.Drawing"> 
     370    <value>75, 23</value> 
     371  </data> 
     372  <data name="ok.TabIndex" type="System.Int32, mscorlib"> 
     373    <value>9</value> 
     374  </data> 
     375  <data name="ok.Text" xml:space="preserve"> 
     376    <value>OK</value> 
     377  </data> 
     378  <data name="&gt;&gt;ok.Name" xml:space="preserve"> 
     379    <value>ok</value> 
     380  </data> 
     381  <data name="&gt;&gt;ok.Type" xml:space="preserve"> 
     382    <value>System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     383  </data> 
     384  <data name="&gt;&gt;ok.Parent" xml:space="preserve"> 
     385    <value>$this</value> 
     386  </data> 
     387  <data name="&gt;&gt;ok.ZOrder" xml:space="preserve"> 
     388    <value>3</value> 
     389  </data> 
     390  <data name="cancel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     391    <value>Bottom, Right</value> 
     392  </data> 
     393  <data name="cancel.Location" type="System.Drawing.Point, System.Drawing"> 
     394    <value>287, 435</value> 
     395  </data> 
     396  <data name="cancel.Size" type="System.Drawing.Size, System.Drawing"> 
     397    <value>75, 23</value> 
     398  </data> 
     399  <data name="cancel.TabIndex" type="System.Int32, mscorlib"> 
     400    <value>10</value> 
     401  </data> 
     402  <data name="cancel.Text" xml:space="preserve"> 
     403    <value>Cancel</value> 
     404  </data> 
     405  <data name="&gt;&gt;cancel.Name" xml:space="preserve"> 
     406    <value>cancel</value> 
     407  </data> 
     408  <data name="&gt;&gt;cancel.Type" xml:space="preserve"> 
     409    <value>System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     410  </data> 
     411  <data name="&gt;&gt;cancel.Parent" xml:space="preserve"> 
     412    <value>$this</value> 
     413  </data> 
     414  <data name="&gt;&gt;cancel.ZOrder" xml:space="preserve"> 
     415    <value>2</value> 
     416  </data> 
     417  <data name="container.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     418    <value>Top, Bottom, Left, Right</value> 
     419  </data> 
     420  <data name="&gt;&gt;typeManual.Name" xml:space="preserve"> 
     421    <value>typeManual</value> 
     422  </data> 
     423  <data name="&gt;&gt;typeManual.Type" xml:space="preserve"> 
     424    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     425  </data> 
     426  <data name="&gt;&gt;typeManual.Parent" xml:space="preserve"> 
     427    <value>containerTask</value> 
     428  </data> 
     429  <data name="&gt;&gt;typeManual.ZOrder" xml:space="preserve"> 
     430    <value>0</value> 
     431  </data> 
     432  <data name="&gt;&gt;typeRestart.Name" xml:space="preserve"> 
     433    <value>typeRestart</value> 
     434  </data> 
     435  <data name="&gt;&gt;typeRestart.Type" xml:space="preserve"> 
     436    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     437  </data> 
     438  <data name="&gt;&gt;typeRestart.Parent" xml:space="preserve"> 
     439    <value>containerTask</value> 
     440  </data> 
     441  <data name="&gt;&gt;typeRestart.ZOrder" xml:space="preserve"> 
     442    <value>1</value> 
     443  </data> 
     444  <data name="containerTask.Location" type="System.Drawing.Point, System.Drawing"> 
     445    <value>4, 24</value> 
     446  </data> 
     447  <data name="containerTask.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms"> 
     448    <value>3, 3, 3, 3</value> 
     449  </data> 
     450  <data name="containerTask.Size" type="System.Drawing.Size, System.Drawing"> 
     451    <value>339, 386</value> 
     452  </data> 
     453  <data name="containerTask.TabIndex" type="System.Int32, mscorlib"> 
     454    <value>0</value> 
     455  </data> 
     456  <data name="containerTask.Text" xml:space="preserve"> 
     457    <value>Task</value> 
     458  </data> 
     459  <data name="&gt;&gt;containerTask.Name" xml:space="preserve"> 
     460    <value>containerTask</value> 
     461  </data> 
     462  <data name="&gt;&gt;containerTask.Type" xml:space="preserve"> 
     463    <value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     464  </data> 
     465  <data name="&gt;&gt;containerTask.Parent" xml:space="preserve"> 
     466    <value>container</value> 
     467  </data> 
     468  <data name="&gt;&gt;containerTask.ZOrder" xml:space="preserve"> 
     469    <value>0</value> 
     470  </data> 
     471  <data name="tableLayoutPanel1.ColumnCount" type="System.Int32, mscorlib"> 
     472    <value>1</value> 
     473  </data> 
     474  <data name="schedulePattern.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     475    <value>Top, Bottom, Left, Right</value> 
     476  </data> 
     477  <data name="scheduleMonthlyLbl.AutoSize" type="System.Boolean, mscorlib"> 
     478    <value>True</value> 
     479  </data> 
     480  <data name="scheduleMonthlyLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     481    <value>23, 237</value> 
     482  </data> 
     483  <data name="scheduleMonthlyLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     484    <value>45, 15</value> 
     485  </data> 
     486  <data name="scheduleMonthlyLbl.TabIndex" type="System.Int32, mscorlib"> 
     487    <value>13</value> 
     488  </data> 
     489  <data name="scheduleMonthlyLbl.Text" xml:space="preserve"> 
     490    <value>On day</value> 
     491  </data> 
     492  <data name="&gt;&gt;scheduleMonthlyLbl.Name" xml:space="preserve"> 
     493    <value>scheduleMonthlyLbl</value> 
     494  </data> 
     495  <data name="&gt;&gt;scheduleMonthlyLbl.Type" xml:space="preserve"> 
     496    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     497  </data> 
     498  <data name="&gt;&gt;scheduleMonthlyLbl.Parent" xml:space="preserve"> 
     499    <value>schedulePattern</value> 
     500  </data> 
     501  <data name="&gt;&gt;scheduleMonthlyLbl.ZOrder" xml:space="preserve"> 
     502    <value>0</value> 
     503  </data> 
     504  <data name="scheduleMonthlyDayNumber.Location" type="System.Drawing.Point, System.Drawing"> 
     505    <value>74, 235</value> 
     506  </data> 
     507  <data name="scheduleMonthlyDayNumber.Size" type="System.Drawing.Size, System.Drawing"> 
     508    <value>43, 23</value> 
     509  </data> 
     510  <data name="scheduleMonthlyDayNumber.TabIndex" type="System.Int32, mscorlib"> 
     511    <value>9</value> 
     512  </data> 
     513  <data name="&gt;&gt;scheduleMonthlyDayNumber.Name" xml:space="preserve"> 
     514    <value>scheduleMonthlyDayNumber</value> 
     515  </data> 
     516  <data name="&gt;&gt;scheduleMonthlyDayNumber.Type" xml:space="preserve"> 
     517    <value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     518  </data> 
     519  <data name="&gt;&gt;scheduleMonthlyDayNumber.Parent" xml:space="preserve"> 
     520    <value>schedulePattern</value> 
     521  </data> 
     522  <data name="&gt;&gt;scheduleMonthlyDayNumber.ZOrder" xml:space="preserve"> 
     523    <value>1</value> 
     524  </data> 
     525  <data name="scheduleMonthlyFreq.Location" type="System.Drawing.Point, System.Drawing"> 
     526    <value>178, 235</value> 
     527  </data> 
     528  <data name="scheduleMonthlyFreq.Size" type="System.Drawing.Size, System.Drawing"> 
     529    <value>43, 23</value> 
     530  </data> 
     531  <data name="scheduleMonthlyFreq.TabIndex" type="System.Int32, mscorlib"> 
     532    <value>11</value> 
     533  </data> 
     534  <data name="&gt;&gt;scheduleMonthlyFreq.Name" xml:space="preserve"> 
     535    <value>scheduleMonthlyFreq</value> 
     536  </data> 
     537  <data name="&gt;&gt;scheduleMonthlyFreq.Type" xml:space="preserve"> 
     538    <value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     539  </data> 
     540  <data name="&gt;&gt;scheduleMonthlyFreq.Parent" xml:space="preserve"> 
     541    <value>schedulePattern</value> 
     542  </data> 
     543  <data name="&gt;&gt;scheduleMonthlyFreq.ZOrder" xml:space="preserve"> 
     544    <value>2</value> 
     545  </data> 
     546  <data name="scheduleMonthlyMonthLbl.AutoSize" type="System.Boolean, mscorlib"> 
     547    <value>True</value> 
     548  </data> 
     549  <data name="scheduleMonthlyMonthLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     550    <value>227, 237</value> 
     551  </data> 
     552  <data name="scheduleMonthlyMonthLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     553    <value>56, 15</value> 
     554  </data> 
     555  <data name="scheduleMonthlyMonthLbl.TabIndex" type="System.Int32, mscorlib"> 
     556    <value>12</value> 
     557  </data> 
     558  <data name="scheduleMonthlyMonthLbl.Text" xml:space="preserve"> 
     559    <value>month(s)</value> 
     560  </data> 
     561  <data name="&gt;&gt;scheduleMonthlyMonthLbl.Name" xml:space="preserve"> 
     562    <value>scheduleMonthlyMonthLbl</value> 
     563  </data> 
     564  <data name="&gt;&gt;scheduleMonthlyMonthLbl.Type" xml:space="preserve"> 
     565    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     566  </data> 
     567  <data name="&gt;&gt;scheduleMonthlyMonthLbl.Parent" xml:space="preserve"> 
     568    <value>schedulePattern</value> 
     569  </data> 
     570  <data name="&gt;&gt;scheduleMonthlyMonthLbl.ZOrder" xml:space="preserve"> 
     571    <value>3</value> 
     572  </data> 
     573  <data name="scheduleMonthlyEveryLbl.AutoSize" type="System.Boolean, mscorlib"> 
     574    <value>True</value> 
     575  </data> 
     576  <data name="scheduleMonthlyEveryLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     577    <value>123, 237</value> 
     578  </data> 
     579  <data name="scheduleMonthlyEveryLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     580    <value>49, 15</value> 
     581  </data> 
     582  <data name="scheduleMonthlyEveryLbl.TabIndex" type="System.Int32, mscorlib"> 
     583    <value>10</value> 
     584  </data> 
     585  <data name="scheduleMonthlyEveryLbl.Text" xml:space="preserve"> 
     586    <value>of every</value> 
     587  </data> 
     588  <data name="&gt;&gt;scheduleMonthlyEveryLbl.Name" xml:space="preserve"> 
     589    <value>scheduleMonthlyEveryLbl</value> 
     590  </data> 
     591  <data name="&gt;&gt;scheduleMonthlyEveryLbl.Type" xml:space="preserve"> 
     592    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     593  </data> 
     594  <data name="&gt;&gt;scheduleMonthlyEveryLbl.Parent" xml:space="preserve"> 
     595    <value>schedulePattern</value> 
     596  </data> 
     597  <data name="&gt;&gt;scheduleMonthlyEveryLbl.ZOrder" xml:space="preserve"> 
     598    <value>4</value> 
     599  </data> 
     600  <data name="scheduleWeeklyFreq.Location" type="System.Drawing.Point, System.Drawing"> 
     601    <value>61, 109</value> 
     602  </data> 
     603  <data name="scheduleWeeklyFreq.Size" type="System.Drawing.Size, System.Drawing"> 
     604    <value>43, 23</value> 
     605  </data> 
     606  <data name="scheduleWeeklyFreq.TabIndex" type="System.Int32, mscorlib"> 
     607    <value>4</value> 
     608  </data> 
     609  <data name="&gt;&gt;scheduleWeeklyFreq.Name" xml:space="preserve"> 
     610    <value>scheduleWeeklyFreq</value> 
     611  </data> 
     612  <data name="&gt;&gt;scheduleWeeklyFreq.Type" xml:space="preserve"> 
     613    <value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     614  </data> 
     615  <data name="&gt;&gt;scheduleWeeklyFreq.Parent" xml:space="preserve"> 
     616    <value>schedulePattern</value> 
     617  </data> 
     618  <data name="&gt;&gt;scheduleWeeklyFreq.ZOrder" xml:space="preserve"> 
     619    <value>5</value> 
     620  </data> 
     621  <data name="scheduleDaily.AutoSize" type="System.Boolean, mscorlib"> 
     622    <value>True</value> 
     623  </data> 
     624  <data name="scheduleDaily.Location" type="System.Drawing.Point, System.Drawing"> 
     625    <value>6, 15</value> 
     626  </data> 
     627  <data name="scheduleDaily.Size" type="System.Drawing.Size, System.Drawing"> 
     628    <value>51, 19</value> 
     629  </data> 
     630  <data name="scheduleDaily.TabIndex" type="System.Int32, mscorlib"> 
     631    <value>0</value> 
     632  </data> 
     633  <data name="scheduleDaily.Text" xml:space="preserve"> 
     634    <value>Daily</value> 
     635  </data> 
     636  <data name="&gt;&gt;scheduleDaily.Name" xml:space="preserve"> 
     637    <value>scheduleDaily</value> 
     638  </data> 
     639  <data name="&gt;&gt;scheduleDaily.Type" xml:space="preserve"> 
     640    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     641  </data> 
     642  <data name="&gt;&gt;scheduleDaily.Parent" xml:space="preserve"> 
     643    <value>schedulePattern</value> 
     644  </data> 
     645  <data name="&gt;&gt;scheduleDaily.ZOrder" xml:space="preserve"> 
     646    <value>6</value> 
     647  </data> 
     648  <data name="scheduleDailyPanel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     649    <value>Top, Left, Right</value> 
     650  </data> 
     651  <data name="scheduleDailyByDayFreq.Location" type="System.Drawing.Point, System.Drawing"> 
     652    <value>62, 3</value> 
     653  </data> 
     654  <data name="scheduleDailyByDayFreq.Size" type="System.Drawing.Size, System.Drawing"> 
     655    <value>43, 23</value> 
     656  </data> 
     657  <data name="scheduleDailyByDayFreq.TabIndex" type="System.Int32, mscorlib"> 
     658    <value>4</value> 
     659  </data> 
     660  <data name="&gt;&gt;scheduleDailyByDayFreq.Name" xml:space="preserve"> 
     661    <value>scheduleDailyByDayFreq</value> 
     662  </data> 
     663  <data name="&gt;&gt;scheduleDailyByDayFreq.Type" xml:space="preserve"> 
     664    <value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     665  </data> 
     666  <data name="&gt;&gt;scheduleDailyByDayFreq.Parent" xml:space="preserve"> 
     667    <value>scheduleDailyPanel</value> 
     668  </data> 
     669  <data name="&gt;&gt;scheduleDailyByDayFreq.ZOrder" xml:space="preserve"> 
     670    <value>0</value> 
     671  </data> 
     672  <data name="scheduleDailyByDay.AutoSize" type="System.Boolean, mscorlib"> 
     673    <value>True</value> 
     674  </data> 
     675  <data name="scheduleDailyByDay.Location" type="System.Drawing.Point, System.Drawing"> 
     676    <value>3, 3</value> 
     677  </data> 
     678  <data name="scheduleDailyByDay.Size" type="System.Drawing.Size, System.Drawing"> 
     679    <value>53, 19</value> 
     680  </data> 
     681  <data name="scheduleDailyByDay.TabIndex" type="System.Int32, mscorlib"> 
     682    <value>0</value> 
     683  </data> 
     684  <data name="scheduleDailyByDay.Text" xml:space="preserve"> 
     685    <value>Every</value> 
     686  </data> 
     687  <data name="&gt;&gt;scheduleDailyByDay.Name" xml:space="preserve"> 
     688    <value>scheduleDailyByDay</value> 
     689  </data> 
     690  <data name="&gt;&gt;scheduleDailyByDay.Type" xml:space="preserve"> 
     691    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     692  </data> 
     693  <data name="&gt;&gt;scheduleDailyByDay.Parent" xml:space="preserve"> 
     694    <value>scheduleDailyPanel</value> 
     695  </data> 
     696  <data name="&gt;&gt;scheduleDailyByDay.ZOrder" xml:space="preserve"> 
     697    <value>1</value> 
     698  </data> 
     699  <data name="scheduleDailyByDayLbl.AutoSize" type="System.Boolean, mscorlib"> 
     700    <value>True</value> 
     701  </data> 
     702  <data name="scheduleDailyByDayLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     703    <value>111, 5</value> 
     704  </data> 
     705  <data name="scheduleDailyByDayLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     706    <value>42, 15</value> 
     707  </data> 
     708  <data name="scheduleDailyByDayLbl.TabIndex" type="System.Int32, mscorlib"> 
     709    <value>2</value> 
     710  </data> 
     711  <data name="scheduleDailyByDayLbl.Text" xml:space="preserve"> 
     712    <value>day(s),</value> 
     713  </data> 
     714  <data name="&gt;&gt;scheduleDailyByDayLbl.Name" xml:space="preserve"> 
     715    <value>scheduleDailyByDayLbl</value> 
     716  </data> 
     717  <data name="&gt;&gt;scheduleDailyByDayLbl.Type" xml:space="preserve"> 
     718    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     719  </data> 
     720  <data name="&gt;&gt;scheduleDailyByDayLbl.Parent" xml:space="preserve"> 
     721    <value>scheduleDailyPanel</value> 
     722  </data> 
     723  <data name="&gt;&gt;scheduleDailyByDayLbl.ZOrder" xml:space="preserve"> 
     724    <value>2</value> 
     725  </data> 
     726  <data name="scheduleDailyByWeekday.AutoSize" type="System.Boolean, mscorlib"> 
     727    <value>True</value> 
     728  </data> 
     729  <data name="scheduleDailyByWeekday.Location" type="System.Drawing.Point, System.Drawing"> 
     730    <value>3, 25</value> 
     731  </data> 
     732  <data name="scheduleDailyByWeekday.Size" type="System.Drawing.Size, System.Drawing"> 
     733    <value>102, 19</value> 
     734  </data> 
     735  <data name="scheduleDailyByWeekday.TabIndex" type="System.Int32, mscorlib"> 
     736    <value>3</value> 
     737  </data> 
     738  <data name="scheduleDailyByWeekday.Text" xml:space="preserve"> 
     739    <value>Every weekday</value> 
     740  </data> 
     741  <data name="&gt;&gt;scheduleDailyByWeekday.Name" xml:space="preserve"> 
     742    <value>scheduleDailyByWeekday</value> 
     743  </data> 
     744  <data name="&gt;&gt;scheduleDailyByWeekday.Type" xml:space="preserve"> 
     745    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     746  </data> 
     747  <data name="&gt;&gt;scheduleDailyByWeekday.Parent" xml:space="preserve"> 
     748    <value>scheduleDailyPanel</value> 
     749  </data> 
     750  <data name="&gt;&gt;scheduleDailyByWeekday.ZOrder" xml:space="preserve"> 
     751    <value>3</value> 
     752  </data> 
     753  <data name="scheduleDailyPanel.Location" type="System.Drawing.Point, System.Drawing"> 
     754    <value>26, 36</value> 
     755  </data> 
     756  <data name="scheduleDailyPanel.Size" type="System.Drawing.Size, System.Drawing"> 
     757    <value>257, 48</value> 
     758  </data> 
     759  <data name="scheduleDailyPanel.TabIndex" type="System.Int32, mscorlib"> 
     760    <value>1</value> 
     761  </data> 
     762  <data name="&gt;&gt;scheduleDailyPanel.Name" xml:space="preserve"> 
     763    <value>scheduleDailyPanel</value> 
     764  </data> 
     765  <data name="&gt;&gt;scheduleDailyPanel.Type" xml:space="preserve"> 
     766    <value>System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     767  </data> 
     768  <data name="&gt;&gt;scheduleDailyPanel.Parent" xml:space="preserve"> 
     769    <value>schedulePattern</value> 
     770  </data> 
     771  <data name="&gt;&gt;scheduleDailyPanel.ZOrder" xml:space="preserve"> 
     772    <value>7</value> 
     773  </data> 
     774  <data name="scheduleWeeklyDays.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     775    <value>Top, Left, Right</value> 
     776  </data> 
     777  <data name="scheduleWeeklyDays.AutoSize" type="System.Boolean, mscorlib"> 
     778    <value>True</value> 
     779  </data> 
     780  <data name="scheduleWeeklyMonday.AutoSize" type="System.Boolean, mscorlib"> 
     781    <value>True</value> 
     782  </data> 
     783  <data name="scheduleWeeklyMonday.Location" type="System.Drawing.Point, System.Drawing"> 
     784    <value>3, 3</value> 
     785  </data> 
     786  <data name="scheduleWeeklyMonday.Size" type="System.Drawing.Size, System.Drawing"> 
     787    <value>70, 19</value> 
     788  </data> 
     789  <data name="scheduleWeeklyMonday.TabIndex" type="System.Int32, mscorlib"> 
     790    <value>12</value> 
     791  </data> 
     792  <data name="scheduleWeeklyMonday.Text" xml:space="preserve"> 
     793    <value>Monday</value> 
     794  </data> 
     795  <data name="&gt;&gt;scheduleWeeklyMonday.Name" xml:space="preserve"> 
     796    <value>scheduleWeeklyMonday</value> 
     797  </data> 
     798  <data name="&gt;&gt;scheduleWeeklyMonday.Type" xml:space="preserve"> 
     799    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     800  </data> 
     801  <data name="&gt;&gt;scheduleWeeklyMonday.Parent" xml:space="preserve"> 
     802    <value>scheduleWeeklyDays</value> 
     803  </data> 
     804  <data name="&gt;&gt;scheduleWeeklyMonday.ZOrder" xml:space="preserve"> 
     805    <value>0</value> 
     806  </data> 
     807  <data name="scheduleWeeklyTuesday.AutoSize" type="System.Boolean, mscorlib"> 
     808    <value>True</value> 
     809  </data> 
     810  <data name="scheduleWeeklyTuesday.Location" type="System.Drawing.Point, System.Drawing"> 
     811    <value>79, 3</value> 
     812  </data> 
     813  <data name="scheduleWeeklyTuesday.Size" type="System.Drawing.Size, System.Drawing"> 
     814    <value>70, 19</value> 
     815  </data> 
     816  <data name="scheduleWeeklyTuesday.TabIndex" type="System.Int32, mscorlib"> 
     817    <value>13</value> 
     818  </data> 
     819  <data name="scheduleWeeklyTuesday.Text" xml:space="preserve"> 
     820    <value>Tuesday</value> 
     821  </data> 
     822  <data name="&gt;&gt;scheduleWeeklyTuesday.Name" xml:space="preserve"> 
     823    <value>scheduleWeeklyTuesday</value> 
     824  </data> 
     825  <data name="&gt;&gt;scheduleWeeklyTuesday.Type" xml:space="preserve"> 
     826    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     827  </data> 
     828  <data name="&gt;&gt;scheduleWeeklyTuesday.Parent" xml:space="preserve"> 
     829    <value>scheduleWeeklyDays</value> 
     830  </data> 
     831  <data name="&gt;&gt;scheduleWeeklyTuesday.ZOrder" xml:space="preserve"> 
     832    <value>1</value> 
     833  </data> 
     834  <data name="scheduleWeeklyWednesday.AutoSize" type="System.Boolean, mscorlib"> 
     835    <value>True</value> 
     836  </data> 
     837  <data name="scheduleWeeklyWednesday.Location" type="System.Drawing.Point, System.Drawing"> 
     838    <value>155, 3</value> 
     839  </data> 
     840  <data name="scheduleWeeklyWednesday.Size" type="System.Drawing.Size, System.Drawing"> 
     841    <value>87, 19</value> 
     842  </data> 
     843  <data name="scheduleWeeklyWednesday.TabIndex" type="System.Int32, mscorlib"> 
     844    <value>14</value> 
     845  </data> 
     846  <data name="scheduleWeeklyWednesday.Text" xml:space="preserve"> 
     847    <value>Wednesday</value> 
     848  </data> 
     849  <data name="&gt;&gt;scheduleWeeklyWednesday.Name" xml:space="preserve"> 
     850    <value>scheduleWeeklyWednesday</value> 
     851  </data> 
     852  <data name="&gt;&gt;scheduleWeeklyWednesday.Type" xml:space="preserve"> 
     853    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     854  </data> 
     855  <data name="&gt;&gt;scheduleWeeklyWednesday.Parent" xml:space="preserve"> 
     856    <value>scheduleWeeklyDays</value> 
     857  </data> 
     858  <data name="&gt;&gt;scheduleWeeklyWednesday.ZOrder" xml:space="preserve"> 
     859    <value>2</value> 
     860  </data> 
     861  <data name="scheduleWeeklyThursday.AutoSize" type="System.Boolean, mscorlib"> 
     862    <value>True</value> 
     863  </data> 
     864  <data name="scheduleWeeklyThursday.Location" type="System.Drawing.Point, System.Drawing"> 
     865    <value>3, 28</value> 
     866  </data> 
     867  <data name="scheduleWeeklyThursday.Size" type="System.Drawing.Size, System.Drawing"> 
     868    <value>75, 19</value> 
     869  </data> 
     870  <data name="scheduleWeeklyThursday.TabIndex" type="System.Int32, mscorlib"> 
     871    <value>15</value> 
     872  </data> 
     873  <data name="scheduleWeeklyThursday.Text" xml:space="preserve"> 
     874    <value>Thursday</value> 
     875  </data> 
     876  <data name="&gt;&gt;scheduleWeeklyThursday.Name" xml:space="preserve"> 
     877    <value>scheduleWeeklyThursday</value> 
     878  </data> 
     879  <data name="&gt;&gt;scheduleWeeklyThursday.Type" xml:space="preserve"> 
     880    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     881  </data> 
     882  <data name="&gt;&gt;scheduleWeeklyThursday.Parent" xml:space="preserve"> 
     883    <value>scheduleWeeklyDays</value> 
     884  </data> 
     885  <data name="&gt;&gt;scheduleWeeklyThursday.ZOrder" xml:space="preserve"> 
     886    <value>3</value> 
     887  </data> 
     888  <data name="scheduleWeeklyFriday.AutoSize" type="System.Boolean, mscorlib"> 
     889    <value>True</value> 
     890  </data> 
     891  <data name="scheduleWeeklyFriday.Location" type="System.Drawing.Point, System.Drawing"> 
     892    <value>84, 28</value> 
     893  </data> 
     894  <data name="scheduleWeeklyFriday.Size" type="System.Drawing.Size, System.Drawing"> 
     895    <value>58, 19</value> 
     896  </data> 
     897  <data name="scheduleWeeklyFriday.TabIndex" type="System.Int32, mscorlib"> 
     898    <value>16</value> 
     899  </data> 
     900  <data name="scheduleWeeklyFriday.Text" xml:space="preserve"> 
     901    <value>Friday</value> 
     902  </data> 
     903  <data name="&gt;&gt;scheduleWeeklyFriday.Name" xml:space="preserve"> 
     904    <value>scheduleWeeklyFriday</value> 
     905  </data> 
     906  <data name="&gt;&gt;scheduleWeeklyFriday.Type" xml:space="preserve"> 
     907    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     908  </data> 
     909  <data name="&gt;&gt;scheduleWeeklyFriday.Parent" xml:space="preserve"> 
     910    <value>scheduleWeeklyDays</value> 
     911  </data> 
     912  <data name="&gt;&gt;scheduleWeeklyFriday.ZOrder" xml:space="preserve"> 
     913    <value>4</value> 
     914  </data> 
     915  <data name="scheduleWeeklySaturday.AutoSize" type="System.Boolean, mscorlib"> 
     916    <value>True</value> 
     917  </data> 
     918  <data name="scheduleWeeklySaturday.Location" type="System.Drawing.Point, System.Drawing"> 
     919    <value>148, 28</value> 
     920  </data> 
     921  <data name="scheduleWeeklySaturday.Size" type="System.Drawing.Size, System.Drawing"> 
     922    <value>72, 19</value> 
     923  </data> 
     924  <data name="scheduleWeeklySaturday.TabIndex" type="System.Int32, mscorlib"> 
     925    <value>17</value> 
     926  </data> 
     927  <data name="scheduleWeeklySaturday.Text" xml:space="preserve"> 
     928    <value>Saturday</value> 
     929  </data> 
     930  <data name="&gt;&gt;scheduleWeeklySaturday.Name" xml:space="preserve"> 
     931    <value>scheduleWeeklySaturday</value> 
     932  </data> 
     933  <data name="&gt;&gt;scheduleWeeklySaturday.Type" xml:space="preserve"> 
     934    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     935  </data> 
     936  <data name="&gt;&gt;scheduleWeeklySaturday.Parent" xml:space="preserve"> 
     937    <value>scheduleWeeklyDays</value> 
     938  </data> 
     939  <data name="&gt;&gt;scheduleWeeklySaturday.ZOrder" xml:space="preserve"> 
     940    <value>5</value> 
     941  </data> 
     942  <data name="scheduleWeeklySunday.AutoSize" type="System.Boolean, mscorlib"> 
     943    <value>True</value> 
     944  </data> 
     945  <data name="scheduleWeeklySunday.Location" type="System.Drawing.Point, System.Drawing"> 
     946    <value>3, 53</value> 
     947  </data> 
     948  <data name="scheduleWeeklySunday.Size" type="System.Drawing.Size, System.Drawing"> 
     949    <value>65, 19</value> 
     950  </data> 
     951  <data name="scheduleWeeklySunday.TabIndex" type="System.Int32, mscorlib"> 
     952    <value>18</value> 
     953  </data> 
     954  <data name="scheduleWeeklySunday.Text" xml:space="preserve"> 
     955    <value>Sunday</value> 
     956  </data> 
     957  <data name="&gt;&gt;scheduleWeeklySunday.Name" xml:space="preserve"> 
     958    <value>scheduleWeeklySunday</value> 
     959  </data> 
     960  <data name="&gt;&gt;scheduleWeeklySunday.Type" xml:space="preserve"> 
     961    <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     962  </data> 
     963  <data name="&gt;&gt;scheduleWeeklySunday.Parent" xml:space="preserve"> 
     964    <value>scheduleWeeklyDays</value> 
     965  </data> 
     966  <data name="&gt;&gt;scheduleWeeklySunday.ZOrder" xml:space="preserve"> 
     967    <value>6</value> 
     968  </data> 
     969  <data name="scheduleWeeklyDays.Location" type="System.Drawing.Point, System.Drawing"> 
     970    <value>23, 135</value> 
     971  </data> 
     972  <data name="scheduleWeeklyDays.Size" type="System.Drawing.Size, System.Drawing"> 
     973    <value>260, 75</value> 
     974  </data> 
     975  <data name="scheduleWeeklyDays.TabIndex" type="System.Int32, mscorlib"> 
     976    <value>6</value> 
     977  </data> 
     978  <data name="&gt;&gt;scheduleWeeklyDays.Name" xml:space="preserve"> 
     979    <value>scheduleWeeklyDays</value> 
     980  </data> 
     981  <data name="&gt;&gt;scheduleWeeklyDays.Type" xml:space="preserve"> 
     982    <value>System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     983  </data> 
     984  <data name="&gt;&gt;scheduleWeeklyDays.Parent" xml:space="preserve"> 
     985    <value>schedulePattern</value> 
     986  </data> 
     987  <data name="&gt;&gt;scheduleWeeklyDays.ZOrder" xml:space="preserve"> 
     988    <value>8</value> 
     989  </data> 
     990  <data name="scheduleWeeklyFreqLbl.AutoSize" type="System.Boolean, mscorlib"> 
     991    <value>True</value> 
     992  </data> 
     993  <data name="scheduleWeeklyFreqLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     994    <value>110, 111</value> 
     995  </data> 
     996  <data name="scheduleWeeklyFreqLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     997    <value>170, 15</value> 
     998  </data> 
     999  <data name="scheduleWeeklyFreqLbl.TabIndex" type="System.Int32, mscorlib"> 
     1000    <value>5</value> 
     1001  </data> 
     1002  <data name="scheduleWeeklyFreqLbl.Text" xml:space="preserve"> 
     1003    <value>week(s), on the following days:</value> 
     1004  </data> 
     1005  <data name="&gt;&gt;scheduleWeeklyFreqLbl.Name" xml:space="preserve"> 
     1006    <value>scheduleWeeklyFreqLbl</value> 
     1007  </data> 
     1008  <data name="&gt;&gt;scheduleWeeklyFreqLbl.Type" xml:space="preserve"> 
     1009    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1010  </data> 
     1011  <data name="&gt;&gt;scheduleWeeklyFreqLbl.Parent" xml:space="preserve"> 
     1012    <value>schedulePattern</value> 
     1013  </data> 
     1014  <data name="&gt;&gt;scheduleWeeklyFreqLbl.ZOrder" xml:space="preserve"> 
     1015    <value>9</value> 
     1016  </data> 
     1017  <data name="scheduleWeeklyLbl.AutoSize" type="System.Boolean, mscorlib"> 
     1018    <value>True</value> 
     1019  </data> 
     1020  <data name="scheduleWeeklyLbl.Location" type="System.Drawing.Point, System.Drawing"> 
     1021    <value>20, 111</value> 
     1022  </data> 
     1023  <data name="scheduleWeeklyLbl.Size" type="System.Drawing.Size, System.Drawing"> 
     1024    <value>35, 15</value> 
     1025  </data> 
     1026  <data name="scheduleWeeklyLbl.TabIndex" type="System.Int32, mscorlib"> 
     1027    <value>3</value> 
     1028  </data> 
     1029  <data name="scheduleWeeklyLbl.Text" xml:space="preserve"> 
     1030    <value>Every</value> 
     1031  </data> 
     1032  <data name="&gt;&gt;scheduleWeeklyLbl.Name" xml:space="preserve"> 
     1033    <value>scheduleWeeklyLbl</value> 
     1034  </data> 
     1035  <data name="&gt;&gt;scheduleWeeklyLbl.Type" xml:space="preserve"> 
     1036    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1037  </data> 
     1038  <data name="&gt;&gt;scheduleWeeklyLbl.Parent" xml:space="preserve"> 
     1039    <value>schedulePattern</value> 
     1040  </data> 
     1041  <data name="&gt;&gt;scheduleWeeklyLbl.ZOrder" xml:space="preserve"> 
     1042    <value>10</value> 
     1043  </data> 
     1044  <data name="scheduleWeekly.AutoSize" type="System.Boolean, mscorlib"> 
     1045    <value>True</value> 
     1046  </data> 
     1047  <data name="scheduleWeekly.Location" type="System.Drawing.Point, System.Drawing"> 
     1048    <value>6, 83</value> 
     1049  </data> 
     1050  <data name="scheduleWeekly.Size" type="System.Drawing.Size, System.Drawing"> 
     1051    <value>63, 19</value> 
     1052  </data> 
     1053  <data name="scheduleWeekly.TabIndex" type="System.Int32, mscorlib"> 
     1054    <value>2</value> 
     1055  </data> 
     1056  <data name="scheduleWeekly.Text" xml:space="preserve"> 
     1057    <value>Weekly</value> 
     1058  </data> 
     1059  <data name="&gt;&gt;scheduleWeekly.Name" xml:space="preserve"> 
     1060    <value>scheduleWeekly</value> 
     1061  </data> 
     1062  <data name="&gt;&gt;scheduleWeekly.Type" xml:space="preserve"> 
     1063    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1064  </data> 
     1065  <data name="&gt;&gt;scheduleWeekly.Parent" xml:space="preserve"> 
     1066    <value>schedulePattern</value> 
     1067  </data> 
     1068  <data name="&gt;&gt;scheduleWeekly.ZOrder" xml:space="preserve"> 
     1069    <value>11</value> 
     1070  </data> 
     1071  <data name="scheduleMonthly.AutoSize" type="System.Boolean, mscorlib"> 
     1072    <value>True</value> 
     1073  </data> 
     1074  <data name="scheduleMonthly.Location" type="System.Drawing.Point, System.Drawing"> 
     1075    <value>6, 211</value> 
     1076  </data> 
     1077  <data name="scheduleMonthly.Size" type="System.Drawing.Size, System.Drawing"> 
     1078    <value>70, 19</value> 
     1079  </data> 
     1080  <data name="scheduleMonthly.TabIndex" type="System.Int32, mscorlib"> 
     1081    <value>7</value> 
     1082  </data> 
     1083  <data name="scheduleMonthly.Text" xml:space="preserve"> 
     1084    <value>Monthly</value> 
     1085  </data> 
     1086  <data name="&gt;&gt;scheduleMonthly.Name" xml:space="preserve"> 
     1087    <value>scheduleMonthly</value> 
     1088  </data> 
     1089  <data name="&gt;&gt;scheduleMonthly.Type" xml:space="preserve"> 
     1090    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1091  </data> 
     1092  <data name="&gt;&gt;scheduleMonthly.Parent" xml:space="preserve"> 
     1093    <value>schedulePattern</value> 
     1094  </data> 
     1095  <data name="&gt;&gt;scheduleMonthly.ZOrder" xml:space="preserve"> 
     1096    <value>12</value> 
     1097  </data> 
     1098  <data name="schedulePattern.Location" type="System.Drawing.Point, System.Drawing"> 
     1099    <value>3, 72</value> 
     1100  </data> 
     1101  <data name="schedulePattern.Size" type="System.Drawing.Size, System.Drawing"> 
     1102    <value>327, 305</value> 
     1103  </data> 
     1104  <data name="schedulePattern.TabIndex" type="System.Int32, mscorlib"> 
     1105    <value>4</value> 
     1106  </data> 
     1107  <data name="schedulePattern.Text" xml:space="preserve"> 
     1108    <value>Recurrence Pattern</value> 
     1109  </data> 
     1110  <data name="&gt;&gt;schedulePattern.Name" xml:space="preserve"> 
     1111    <value>schedulePattern</value> 
     1112  </data> 
     1113  <data name="&gt;&gt;schedulePattern.Type" xml:space="preserve"> 
     1114    <value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1115  </data> 
     1116  <data name="&gt;&gt;schedulePattern.Parent" xml:space="preserve"> 
     1117    <value>tableLayoutPanel1</value> 
     1118  </data> 
     1119  <data name="&gt;&gt;schedulePattern.ZOrder" xml:space="preserve"> 
     1120    <value>0</value> 
     1121  </data> 
     1122  <data name="&gt;&gt;nonRecurringLbl.Name" xml:space="preserve"> 
     1123    <value>nonRecurringLbl</value> 
     1124  </data> 
     1125  <data name="&gt;&gt;nonRecurringLbl.Type" xml:space="preserve"> 
     1126    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1127  </data> 
     1128  <data name="&gt;&gt;nonRecurringLbl.Parent" xml:space="preserve"> 
     1129    <value>nonRecurringPanel</value> 
     1130  </data> 
     1131  <data name="&gt;&gt;nonRecurringLbl.ZOrder" xml:space="preserve"> 
     1132    <value>0</value> 
     1133  </data> 
     1134  <data name="&gt;&gt;nonRecurringBitmap.Name" xml:space="preserve"> 
     1135    <value>nonRecurringBitmap</value> 
     1136  </data> 
     1137  <data name="&gt;&gt;nonRecurringBitmap.Type" xml:space="preserve"> 
     1138    <value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1139  </data> 
     1140  <data name="&gt;&gt;nonRecurringBitmap.Parent" xml:space="preserve"> 
     1141    <value>nonRecurringPanel</value> 
     1142  </data> 
     1143  <data name="&gt;&gt;nonRecurringBitmap.ZOrder" xml:space="preserve"> 
     1144    <value>1</value> 
     1145  </data> 
     1146  <data name="nonRecurringPanel.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms"> 
     1147    <value>Fill</value> 
     1148  </data> 
     1149  <data name="nonRecurringPanel.Location" type="System.Drawing.Point, System.Drawing"> 
     1150    <value>3, 3</value> 
     1151  </data> 
     1152  <data name="nonRecurringPanel.Size" type="System.Drawing.Size, System.Drawing"> 
     1153    <value>327, 34</value> 
     1154  </data> 
     1155  <data name="nonRecurringPanel.TabIndex" type="System.Int32, mscorlib"> 
     1156    <value>1</value> 
     1157  </data> 
     1158  <data name="&gt;&gt;nonRecurringPanel.Name" xml:space="preserve"> 
     1159    <value>nonRecurringPanel</value> 
     1160  </data> 
     1161  <data name="&gt;&gt;nonRecurringPanel.Type" xml:space="preserve"> 
     1162    <value>System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1163  </data> 
     1164  <data name="&gt;&gt;nonRecurringPanel.Parent" xml:space="preserve"> 
     1165    <value>tableLayoutPanel1</value> 
     1166  </data> 
     1167  <data name="&gt;&gt;nonRecurringPanel.ZOrder" xml:space="preserve"> 
     1168    <value>1</value> 
     1169  </data> 
     1170  <data name="scheduleTimePanel.AutoSize" type="System.Boolean, mscorlib"> 
     1171    <value>True</value> 
     1172  </data> 
     1173  <data name="&gt;&gt;scheduleTime.Name" xml:space="preserve"> 
     1174    <value>scheduleTime</value> 
     1175  </data> 
     1176  <data name="&gt;&gt;scheduleTime.Type" xml:space="preserve"> 
     1177    <value>System.Windows.Forms.DateTimePicker, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1178  </data> 
     1179  <data name="&gt;&gt;scheduleTime.Parent" xml:space="preserve"> 
     1180    <value>scheduleTimePanel</value> 
     1181  </data> 
     1182  <data name="&gt;&gt;scheduleTime.ZOrder" xml:space="preserve"> 
     1183    <value>0</value> 
     1184  </data> 
     1185  <data name="&gt;&gt;scheduleTimeLbl.Name" xml:space="preserve"> 
     1186    <value>scheduleTimeLbl</value> 
     1187  </data> 
     1188  <data name="&gt;&gt;scheduleTimeLbl.Type" xml:space="preserve"> 
     1189    <value>System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1190  </data> 
     1191  <data name="&gt;&gt;scheduleTimeLbl.Parent" xml:space="preserve"> 
     1192    <value>scheduleTimePanel</value> 
     1193  </data> 
     1194  <data name="&gt;&gt;scheduleTimeLbl.ZOrder" xml:space="preserve"> 
     1195    <value>1</value> 
     1196  </data> 
     1197  <data name="scheduleTimePanel.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms"> 
     1198    <value>Fill</value> 
     1199  </data> 
     1200  <data name="scheduleTimePanel.Location" type="System.Drawing.Point, System.Drawing"> 
     1201    <value>0, 40</value> 
     1202  </data> 
     1203  <data name="scheduleTimePanel.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> 
     1204    <value>0, 0, 0, 0</value> 
     1205  </data> 
     1206  <data name="scheduleTimePanel.Size" type="System.Drawing.Size, System.Drawing"> 
     1207    <value>333, 29</value> 
     1208  </data> 
     1209  <data name="scheduleTimePanel.TabIndex" type="System.Int32, mscorlib"> 
     1210    <value>2</value> 
     1211  </data> 
     1212  <data name="&gt;&gt;scheduleTimePanel.Name" xml:space="preserve"> 
     1213    <value>scheduleTimePanel</value> 
     1214  </data> 
     1215  <data name="&gt;&gt;scheduleTimePanel.Type" xml:space="preserve"> 
     1216    <value>System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1217  </data> 
     1218  <data name="&gt;&gt;scheduleTimePanel.Parent" xml:space="preserve"> 
     1219    <value>tableLayoutPanel1</value> 
     1220  </data> 
     1221  <data name="&gt;&gt;scheduleTimePanel.ZOrder" xml:space="preserve"> 
     1222    <value>2</value> 
     1223  </data> 
     1224  <data name="tableLayoutPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms"> 
     1225    <value>Fill</value> 
     1226  </data> 
     1227  <data name="tableLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing"> 
     1228    <value>3, 3</value> 
     1229  </data> 
     1230  <data name="tableLayoutPanel1.RowCount" type="System.Int32, mscorlib"> 
     1231    <value>3</value> 
     1232  </data> 
     1233  <data name="tableLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing"> 
     1234    <value>333, 380</value> 
     1235  </data> 
     1236  <data name="tableLayoutPanel1.TabIndex" type="System.Int32, mscorlib"> 
     1237    <value>10</value> 
     1238  </data> 
     1239  <data name="&gt;&gt;tableLayoutPanel1.Name" xml:space="preserve"> 
     1240    <value>tableLayoutPanel1</value> 
     1241  </data> 
     1242  <data name="&gt;&gt;tableLayoutPanel1.Type" xml:space="preserve"> 
     1243    <value>System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1244  </data> 
     1245  <data name="&gt;&gt;tableLayoutPanel1.Parent" xml:space="preserve"> 
     1246    <value>containerSchedule</value> 
     1247  </data> 
     1248  <data name="&gt;&gt;tableLayoutPanel1.ZOrder" xml:space="preserve"> 
     1249    <value>0</value> 
     1250  </data> 
     1251  <data name="tableLayoutPanel1.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms"> 
     1252    <value>&lt;?xml version="1.0" encoding="utf-16"?&gt;&lt;TableLayoutSettings&gt;&lt;Controls&gt;&lt;Control Name="schedulePattern" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="nonRecurringPanel" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;Control Name="scheduleTimePanel" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /&gt;&lt;/Controls&gt;&lt;Columns Styles="Percent,100" /&gt;&lt;Rows Styles="AutoSize,0,AutoSize,0,Percent,100" /&gt;&lt;/TableLayoutSettings&gt;</value> 
     1253  </data> 
     1254  <data name="containerSchedule.Location" type="System.Drawing.Point, System.Drawing"> 
     1255    <value>4, 24</value> 
     1256  </data> 
     1257  <data name="containerSchedule.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms"> 
     1258    <value>3, 3, 3, 3</value> 
     1259  </data> 
     1260  <data name="containerSchedule.Size" type="System.Drawing.Size, System.Drawing"> 
     1261    <value>339, 386</value> 
     1262  </data> 
     1263  <data name="containerSchedule.TabIndex" type="System.Int32, mscorlib"> 
     1264    <value>1</value> 
     1265  </data> 
     1266  <data name="containerSchedule.Text" xml:space="preserve"> 
     1267    <value>Schedule</value> 
     1268  </data> 
     1269  <data name="&gt;&gt;containerSchedule.Name" xml:space="preserve"> 
     1270    <value>containerSchedule</value> 
     1271  </data> 
     1272  <data name="&gt;&gt;containerSchedule.Type" xml:space="preserve"> 
     1273    <value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1274  </data> 
     1275  <data name="&gt;&gt;containerSchedule.Parent" xml:space="preserve"> 
     1276    <value>container</value> 
     1277  </data> 
     1278  <data name="&gt;&gt;containerSchedule.ZOrder" xml:space="preserve"> 
     1279    <value>1</value> 
     1280  </data> 
     1281  <data name="container.Location" type="System.Drawing.Point, System.Drawing"> 
     1282    <value>15, 12</value> 
     1283  </data> 
     1284  <data name="container.Size" type="System.Drawing.Size, System.Drawing"> 
     1285    <value>347, 414</value> 
     1286  </data> 
     1287  <data name="container.TabIndex" type="System.Int32, mscorlib"> 
     1288    <value>11</value> 
     1289  </data> 
     1290  <data name="&gt;&gt;container.Name" xml:space="preserve"> 
     1291    <value>container</value> 
     1292  </data> 
     1293  <data name="&gt;&gt;container.Type" xml:space="preserve"> 
     1294    <value>System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1295  </data> 
     1296  <data name="&gt;&gt;container.Parent" xml:space="preserve"> 
     1297    <value>$this</value> 
     1298  </data> 
     1299  <data name="&gt;&gt;container.ZOrder" xml:space="preserve"> 
     1300    <value>1</value> 
     1301  </data> 
     1302  <data name="typeManual.AutoSize" type="System.Boolean, mscorlib"> 
     1303    <value>True</value> 
     1304  </data> 
     1305  <data name="typeManual.Location" type="System.Drawing.Point, System.Drawing"> 
     1306    <value>142, 35</value> 
     1307  </data> 
     1308  <data name="typeManual.Size" type="System.Drawing.Size, System.Drawing"> 
     1309    <value>98, 19</value> 
     1310  </data> 
     1311  <data name="typeManual.TabIndex" type="System.Int32, mscorlib"> 
     1312    <value>3</value> 
     1313  </data> 
     1314  <data name="typeManual.Text" xml:space="preserve"> 
     1315    <value>Run manually</value> 
     1316  </data> 
     1317  <data name="&gt;&gt;typeManual.Name" xml:space="preserve"> 
     1318    <value>typeManual</value> 
     1319  </data> 
     1320  <data name="&gt;&gt;typeManual.Type" xml:space="preserve"> 
     1321    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1322  </data> 
     1323  <data name="&gt;&gt;typeManual.Parent" xml:space="preserve"> 
     1324    <value>containerTask</value> 
     1325  </data> 
     1326  <data name="&gt;&gt;typeManual.ZOrder" xml:space="preserve"> 
     1327    <value>0</value> 
     1328  </data> 
     1329  <data name="typeRestart.AutoSize" type="System.Boolean, mscorlib"> 
     1330    <value>True</value> 
     1331  </data> 
     1332  <data name="typeRestart.Location" type="System.Drawing.Point, System.Drawing"> 
     1333    <value>142, 71</value> 
     1334  </data> 
     1335  <data name="typeRestart.Size" type="System.Drawing.Size, System.Drawing"> 
     1336    <value>99, 19</value> 
     1337  </data> 
     1338  <data name="typeRestart.TabIndex" type="System.Int32, mscorlib"> 
     1339    <value>5</value> 
     1340  </data> 
     1341  <data name="typeRestart.Text" xml:space="preserve"> 
     1342    <value>Run on restart</value> 
     1343  </data> 
     1344  <data name="&gt;&gt;typeRestart.Name" xml:space="preserve"> 
     1345    <value>typeRestart</value> 
     1346  </data> 
     1347  <data name="&gt;&gt;typeRestart.Type" xml:space="preserve"> 
     1348    <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 
     1349  </data> 
     1350  <data name="&gt;&gt;typeRestart.Parent" xml:space="preserve"> 
     1351    <value>containerTask</value> 
     1352  </data> 
     1353  <data name="&gt;&gt;typeRestart.ZOrder" xml:space="preserve"> 
     1354    <value>1</value> 
     1355  </data> 
     1356  <data name="nonRecurringLbl.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> 
     1357    <value>Top, Bottom, Left, Right</value> 
     1358  </data> 
     1359  <data name="nonRecurringLbl.Location" type="System.Drawing.Point, System.D