Changeset 908


Ignore:
Timestamp:
Aug 11, 2010, 8:42:23 AM (14 years ago)
Author:
Sam Habiel
Message:

StartDate for CGAVView, 1st try.
CGDocument uses StartDate from Current thread locale rather than current culture.

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAVView.cs

    r864 r908  
    867867            this.mnu7Day.Click += new System.EventHandler(this.dateTimePicker1_ValueChanged);
    868868
     869            //Set start date
     870            DateTime startDate,endDate;
     871            Document.WeekNeedsRefresh(1, DateTime.Today, out startDate, out endDate);
     872            this.StartDate = startDate;
     873            //Draw the calendar
     874            this.calendarGrid1.OnUpdateArrays();
     875            this.calendarGrid1.Invalidate();
     876
    869877                }
    870878
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocument.cs

    r886 r908  
    668668                        DateTime OldStartDay = m_dStartDate;
    669669                        DateTime OldEndDay = m_dEndDate;
    670             // Week start based on machine locale
    671             int nStartWeekDay = (int)System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek;
     670            // Week start based on thread locale
     671            int nStartWeekDay = (int)System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat.FirstDayOfWeek;
    672672            int nWeekDay = (int) SelectedDate.DayOfWeek; //0 == Sunday
    673673
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj

    r886 r908  
    6767    <ConfigurationOverrideFile>
    6868    </ConfigurationOverrideFile>
    69     <DefineConstants>DEBUG</DefineConstants>
     69    <DefineConstants>TRACE;DEBUG</DefineConstants>
    7070    <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile>
    7171    <DebugSymbols>false</DebugSymbols>
     
    9090    <ConfigurationOverrideFile>
    9191    </ConfigurationOverrideFile>
    92     <DefineConstants>
    93     </DefineConstants>
     92    <DefineConstants>TRACE</DefineConstants>
    9493    <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile>
    9594    <DebugSymbols>false</DebugSymbols>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user

    r900 r908  
    3636    </RemoteDebugMachine>
    3737    <StartAction>Project</StartAction>
    38     <StartArguments>/s=10.161.20.25 /p=9235 /a=shabiel12 /v=abc,123! /e=windows-1256</StartArguments>
     38    <StartArguments>/s=172.16.16.125 /p=9250 /a=shabiel12 /v=abc,123! /e=utf-8</StartArguments>
    3939    <StartPage>
    4040    </StartPage>
     
    5555    </RemoteDebugMachine>
    5656    <StartAction>Project</StartAction>
    57     <StartArguments>/s=10.161.20.25 /p=9235 /a=shabiel12 /v=abc,123! /e=windows-1256</StartArguments>
     57    <StartArguments>/s=172.16.16.125 /p=9250 /a=shabiel12 /v=abc,123! /e=utf-8</StartArguments>
    5858    <StartPage>
    5959    </StartPage>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DApptSearch.cs

    r614 r908  
    268268                private void InitializeComponent()
    269269                {
    270                         this.panel1 = new System.Windows.Forms.Panel();
    271                         this.cmdSearch = new System.Windows.Forms.Button();
    272                         this.cmdCancel = new System.Windows.Forms.Button();
    273                         this.cmdOK = new System.Windows.Forms.Button();
    274                         this.pnlDescription = new System.Windows.Forms.Panel();
    275                         this.grpDescription = new System.Windows.Forms.GroupBox();
    276                         this.lblDescription = new System.Windows.Forms.Label();
    277                         this.groupBox1 = new System.Windows.Forms.GroupBox();
    278                         this.label3 = new System.Windows.Forms.Label();
    279                         this.label2 = new System.Windows.Forms.Label();
    280                         this.lstAccessTypes = new System.Windows.Forms.CheckedListBox();
    281                         this.cboAccessTypeFilter = new System.Windows.Forms.ComboBox();
    282                         this.grpDayOfWeek = new System.Windows.Forms.GroupBox();
    283                         this.chkSun = new System.Windows.Forms.CheckBox();
    284                         this.chkSat = new System.Windows.Forms.CheckBox();
    285                         this.chkFri = new System.Windows.Forms.CheckBox();
    286                         this.chkThu = new System.Windows.Forms.CheckBox();
    287                         this.chkWed = new System.Windows.Forms.CheckBox();
    288                         this.chkTue = new System.Windows.Forms.CheckBox();
    289                         this.chkMon = new System.Windows.Forms.CheckBox();
    290                         this.grpTimeOfDay = new System.Windows.Forms.GroupBox();
    291                         this.rdoBoth = new System.Windows.Forms.RadioButton();
    292                         this.rdoPM = new System.Windows.Forms.RadioButton();
    293                         this.rdoAM = new System.Windows.Forms.RadioButton();
    294                         this.label1 = new System.Windows.Forms.Label();
    295                         this.calStartDate = new System.Windows.Forms.MonthCalendar();
    296                         this.groupBox2 = new System.Windows.Forms.GroupBox();
    297                         this.grdResult = new System.Windows.Forms.DataGrid();
    298                         this.panel1.SuspendLayout();
    299                         this.pnlDescription.SuspendLayout();
    300                         this.grpDescription.SuspendLayout();
    301                         this.groupBox1.SuspendLayout();
    302                         this.grpDayOfWeek.SuspendLayout();
    303                         this.grpTimeOfDay.SuspendLayout();
    304                         this.groupBox2.SuspendLayout();
    305                         ((System.ComponentModel.ISupportInitialize)(this.grdResult)).BeginInit();
    306                         this.SuspendLayout();
    307                         //
    308                         // panel1
    309                         //
    310                         this.panel1.Controls.Add(this.cmdSearch);
    311                         this.panel1.Controls.Add(this.cmdCancel);
    312                         this.panel1.Controls.Add(this.cmdOK);
    313                         this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
    314                         this.panel1.Location = new System.Drawing.Point(0, 456);
    315                         this.panel1.Name = "panel1";
    316                         this.panel1.Size = new System.Drawing.Size(730, 40);
    317                         this.panel1.TabIndex = 4;
    318                         //
    319                         // cmdSearch
    320                         //
    321                         this.cmdSearch.Location = new System.Drawing.Point(536, 8);
    322                         this.cmdSearch.Name = "cmdSearch";
    323                         this.cmdSearch.Size = new System.Drawing.Size(72, 24);
    324                         this.cmdSearch.TabIndex = 2;
    325                         this.cmdSearch.Text = "Search";
    326                         this.cmdSearch.Click += new System.EventHandler(this.cmdSearch_Click);
    327                         //
    328                         // cmdCancel
    329                         //
    330                         this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
    331                         this.cmdCancel.Location = new System.Drawing.Point(616, 8);
    332                         this.cmdCancel.Name = "cmdCancel";
    333                         this.cmdCancel.Size = new System.Drawing.Size(64, 24);
    334                         this.cmdCancel.TabIndex = 1;
    335                         this.cmdCancel.Text = "Cancel";
    336                         //
    337                         // cmdOK
    338                         //
    339                         this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
    340                         this.cmdOK.Location = new System.Drawing.Point(128, 8);
    341                         this.cmdOK.Name = "cmdOK";
    342                         this.cmdOK.Size = new System.Drawing.Size(64, 24);
    343                         this.cmdOK.TabIndex = 0;
    344                         this.cmdOK.Text = "OK";
    345                         this.cmdOK.Visible = false;
    346                         this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
    347                         //
    348                         // pnlDescription
    349                         //
    350                         this.pnlDescription.Controls.Add(this.grpDescription);
    351                         this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
    352                         this.pnlDescription.Location = new System.Drawing.Point(0, 392);
    353                         this.pnlDescription.Name = "pnlDescription";
    354                         this.pnlDescription.Size = new System.Drawing.Size(730, 64);
    355                         this.pnlDescription.TabIndex = 47;
    356                         //
    357                         // grpDescription
    358                         //
    359                         this.grpDescription.Controls.Add(this.lblDescription);
    360                         this.grpDescription.Dock = System.Windows.Forms.DockStyle.Fill;
    361                         this.grpDescription.Location = new System.Drawing.Point(0, 0);
    362                         this.grpDescription.Name = "grpDescription";
    363                         this.grpDescription.Size = new System.Drawing.Size(730, 64);
    364                         this.grpDescription.TabIndex = 0;
    365                         this.grpDescription.TabStop = false;
    366                         this.grpDescription.Text = "Description";
    367                         //
    368                         // lblDescription
    369                         //
    370                         this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
    371                         this.lblDescription.Location = new System.Drawing.Point(3, 16);
    372                         this.lblDescription.Name = "lblDescription";
    373                         this.lblDescription.Size = new System.Drawing.Size(724, 45);
    374                         this.lblDescription.TabIndex = 1;
    375                         this.lblDescription.Text = "Search for available appointment times using this panel.  You may narrow your sea" +
    376                                 "rch by selecting an access type or by selecting specific days of the week or tim" +
    377                                 "es of day.";
    378                         //
    379                         // groupBox1
    380                         //
    381                         this.groupBox1.Controls.Add(this.label3);
    382                         this.groupBox1.Controls.Add(this.label2);
    383                         this.groupBox1.Controls.Add(this.lstAccessTypes);
    384                         this.groupBox1.Controls.Add(this.cboAccessTypeFilter);
    385                         this.groupBox1.Controls.Add(this.grpDayOfWeek);
    386                         this.groupBox1.Controls.Add(this.grpTimeOfDay);
    387                         this.groupBox1.Controls.Add(this.label1);
    388                         this.groupBox1.Controls.Add(this.calStartDate);
    389                         this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
    390                         this.groupBox1.Location = new System.Drawing.Point(0, 0);
    391                         this.groupBox1.Name = "groupBox1";
    392                         this.groupBox1.Size = new System.Drawing.Size(730, 208);
    393                         this.groupBox1.TabIndex = 56;
    394                         this.groupBox1.TabStop = false;
    395                         this.groupBox1.Text = "Search Parameters";
    396                         //
    397                         // label3
    398                         //
    399                         this.label3.Location = new System.Drawing.Point(472, 72);
    400                         this.label3.Name = "label3";
    401                         this.label3.Size = new System.Drawing.Size(80, 16);
    402                         this.label3.TabIndex = 63;
    403                         this.label3.Text = "Access Type:";
    404                         //
    405                         // label2
    406                         //
    407                         this.label2.Location = new System.Drawing.Point(472, 24);
    408                         this.label2.Name = "label2";
    409                         this.label2.Size = new System.Drawing.Size(104, 16);
    410                         this.label2.TabIndex = 62;
    411                         this.label2.Text = "Access Group:";
    412                         //
    413                         // lstAccessTypes
    414                         //
    415                         this.lstAccessTypes.CheckOnClick = true;
    416                         this.lstAccessTypes.HorizontalScrollbar = true;
    417                         this.lstAccessTypes.Location = new System.Drawing.Point(472, 88);
    418                         this.lstAccessTypes.MultiColumn = true;
    419                         this.lstAccessTypes.Name = "lstAccessTypes";
    420                         this.lstAccessTypes.Size = new System.Drawing.Size(224, 109);
    421                         this.lstAccessTypes.TabIndex = 61;
    422                         //
    423                         // cboAccessTypeFilter
    424                         //
    425                         this.cboAccessTypeFilter.Location = new System.Drawing.Point(472, 40);
    426                         this.cboAccessTypeFilter.Name = "cboAccessTypeFilter";
    427                         this.cboAccessTypeFilter.Size = new System.Drawing.Size(224, 21);
    428                         this.cboAccessTypeFilter.TabIndex = 60;
    429                         this.cboAccessTypeFilter.Text = "cboAccessTypeFilter";
    430                         this.cboAccessTypeFilter.SelectionChangeCommitted += new System.EventHandler(this.cboAccessTypeFilter_SelectionChangeCommitted);
    431                         //
    432                         // grpDayOfWeek
    433                         //
    434                         this.grpDayOfWeek.Controls.Add(this.chkSun);
    435                         this.grpDayOfWeek.Controls.Add(this.chkSat);
    436                         this.grpDayOfWeek.Controls.Add(this.chkFri);
    437                         this.grpDayOfWeek.Controls.Add(this.chkThu);
    438                         this.grpDayOfWeek.Controls.Add(this.chkWed);
    439                         this.grpDayOfWeek.Controls.Add(this.chkTue);
    440                         this.grpDayOfWeek.Controls.Add(this.chkMon);
    441                         this.grpDayOfWeek.Location = new System.Drawing.Point(224, 96);
    442                         this.grpDayOfWeek.Name = "grpDayOfWeek";
    443                         this.grpDayOfWeek.Size = new System.Drawing.Size(240, 96);
    444                         this.grpDayOfWeek.TabIndex = 59;
    445                         this.grpDayOfWeek.TabStop = false;
    446                         this.grpDayOfWeek.Text = "Day of the Week";
    447                         //
    448                         // chkSun
    449                         //
    450                         this.chkSun.Location = new System.Drawing.Point(176, 64);
    451                         this.chkSun.Name = "chkSun";
    452                         this.chkSun.Size = new System.Drawing.Size(48, 16);
    453                         this.chkSun.TabIndex = 6;
    454                         this.chkSun.Text = "Sun";
    455                         //
    456                         // chkSat
    457                         //
    458                         this.chkSat.Location = new System.Drawing.Point(128, 64);
    459                         this.chkSat.Name = "chkSat";
    460                         this.chkSat.Size = new System.Drawing.Size(48, 16);
    461                         this.chkSat.TabIndex = 5;
    462                         this.chkSat.Text = "Sat";
    463                         //
    464                         // chkFri
    465                         //
    466                         this.chkFri.Location = new System.Drawing.Point(72, 64);
    467                         this.chkFri.Name = "chkFri";
    468                         this.chkFri.Size = new System.Drawing.Size(48, 16);
    469                         this.chkFri.TabIndex = 4;
    470                         this.chkFri.Text = "Fri";
    471                         //
    472                         // chkThu
    473                         //
    474                         this.chkThu.Location = new System.Drawing.Point(16, 64);
    475                         this.chkThu.Name = "chkThu";
    476                         this.chkThu.Size = new System.Drawing.Size(48, 16);
    477                         this.chkThu.TabIndex = 3;
    478                         this.chkThu.Text = "Thu";
    479                         //
    480                         // chkWed
    481                         //
    482                         this.chkWed.Location = new System.Drawing.Point(128, 32);
    483                         this.chkWed.Name = "chkWed";
    484                         this.chkWed.Size = new System.Drawing.Size(48, 16);
    485                         this.chkWed.TabIndex = 2;
    486                         this.chkWed.Text = "Wed";
    487                         //
    488                         // chkTue
    489                         //
    490                         this.chkTue.Location = new System.Drawing.Point(72, 32);
    491                         this.chkTue.Name = "chkTue";
    492                         this.chkTue.Size = new System.Drawing.Size(48, 16);
    493                         this.chkTue.TabIndex = 1;
    494                         this.chkTue.Text = "Tue";
    495                         //
    496                         // chkMon
    497                         //
    498                         this.chkMon.Location = new System.Drawing.Point(16, 32);
    499                         this.chkMon.Name = "chkMon";
    500                         this.chkMon.Size = new System.Drawing.Size(48, 16);
    501                         this.chkMon.TabIndex = 0;
    502                         this.chkMon.Text = "Mon";
    503                         //
    504                         // grpTimeOfDay
    505                         //
    506                         this.grpTimeOfDay.Controls.Add(this.rdoBoth);
    507                         this.grpTimeOfDay.Controls.Add(this.rdoPM);
    508                         this.grpTimeOfDay.Controls.Add(this.rdoAM);
    509                         this.grpTimeOfDay.Location = new System.Drawing.Point(224, 32);
    510                         this.grpTimeOfDay.Name = "grpTimeOfDay";
    511                         this.grpTimeOfDay.Size = new System.Drawing.Size(240, 48);
    512                         this.grpTimeOfDay.TabIndex = 58;
    513                         this.grpTimeOfDay.TabStop = false;
    514                         this.grpTimeOfDay.Text = "Time of Day";
    515                         //
    516                         // rdoBoth
    517                         //
    518                         this.rdoBoth.Checked = true;
    519                         this.rdoBoth.Location = new System.Drawing.Point(176, 24);
    520                         this.rdoBoth.Name = "rdoBoth";
    521                         this.rdoBoth.Size = new System.Drawing.Size(48, 16);
    522                         this.rdoBoth.TabIndex = 2;
    523                         this.rdoBoth.TabStop = true;
    524                         this.rdoBoth.Text = "Both";
    525                         //
    526                         // rdoPM
    527                         //
    528                         this.rdoPM.Location = new System.Drawing.Point(96, 24);
    529                         this.rdoPM.Name = "rdoPM";
    530                         this.rdoPM.Size = new System.Drawing.Size(72, 16);
    531                         this.rdoPM.TabIndex = 1;
    532                         this.rdoPM.Text = "PM Only";
    533                         //
    534                         // rdoAM
    535                         //
    536                         this.rdoAM.Location = new System.Drawing.Point(16, 24);
    537                         this.rdoAM.Name = "rdoAM";
    538                         this.rdoAM.Size = new System.Drawing.Size(72, 16);
    539                         this.rdoAM.TabIndex = 0;
    540                         this.rdoAM.Text = "AM Only";
    541                         //
    542                         // label1
    543                         //
    544                         this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
    545                         this.label1.Location = new System.Drawing.Point(16, 24);
    546                         this.label1.Name = "label1";
    547                         this.label1.Size = new System.Drawing.Size(136, 16);
    548                         this.label1.TabIndex = 57;
    549                         this.label1.Text = "Date Range:";
    550                         //
    551                         // calStartDate
    552                         //
    553                         this.calStartDate.Location = new System.Drawing.Point(16, 40);
    554                         this.calStartDate.MaxSelectionCount = 62;
    555                         this.calStartDate.Name = "calStartDate";
    556                         this.calStartDate.TabIndex = 56;
    557                         //
    558                         // groupBox2
    559                         //
    560                         this.groupBox2.Controls.Add(this.grdResult);
    561                         this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
    562                         this.groupBox2.Location = new System.Drawing.Point(0, 208);
    563                         this.groupBox2.Name = "groupBox2";
    564                         this.groupBox2.Size = new System.Drawing.Size(730, 184);
    565                         this.groupBox2.TabIndex = 57;
    566                         this.groupBox2.TabStop = false;
    567                         this.groupBox2.Text = "Search Result";
    568                         //
    569                         // grdResult
    570                         //
    571                         this.grdResult.CaptionVisible = false;
    572                         this.grdResult.DataMember = "";
    573                         this.grdResult.Dock = System.Windows.Forms.DockStyle.Fill;
    574                         this.grdResult.HeaderForeColor = System.Drawing.SystemColors.ControlText;
    575                         this.grdResult.Location = new System.Drawing.Point(3, 16);
    576                         this.grdResult.Name = "grdResult";
    577                         this.grdResult.ReadOnly = true;
    578                         this.grdResult.Size = new System.Drawing.Size(724, 165);
    579                         this.grdResult.TabIndex = 0;
    580                         this.grdResult.DoubleClick += new System.EventHandler(this.grdResult_DoubleClick);
    581                         this.grdResult.CurrentCellChanged += new System.EventHandler(this.grdResult_CurrentCellChanged);
    582                         //
    583                         // DApptSearch
    584                         //
    585                         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    586                         this.CancelButton = this.cmdCancel;
    587                         this.ClientSize = new System.Drawing.Size(730, 496);
    588                         this.Controls.Add(this.groupBox2);
    589                         this.Controls.Add(this.groupBox1);
    590                         this.Controls.Add(this.pnlDescription);
    591                         this.Controls.Add(this.panel1);
    592                         this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
    593                         this.Name = "DApptSearch";
    594                         this.Text = "Find Clinic Availability";
    595                         this.panel1.ResumeLayout(false);
    596                         this.pnlDescription.ResumeLayout(false);
    597                         this.grpDescription.ResumeLayout(false);
    598                         this.groupBox1.ResumeLayout(false);
    599                         this.grpDayOfWeek.ResumeLayout(false);
    600                         this.grpTimeOfDay.ResumeLayout(false);
    601                         this.groupBox2.ResumeLayout(false);
    602                         ((System.ComponentModel.ISupportInitialize)(this.grdResult)).EndInit();
    603                         this.ResumeLayout(false);
     270            this.panel1 = new System.Windows.Forms.Panel();
     271            this.cmdSearch = new System.Windows.Forms.Button();
     272            this.cmdCancel = new System.Windows.Forms.Button();
     273            this.cmdOK = new System.Windows.Forms.Button();
     274            this.pnlDescription = new System.Windows.Forms.Panel();
     275            this.grpDescription = new System.Windows.Forms.GroupBox();
     276            this.lblDescription = new System.Windows.Forms.Label();
     277            this.groupBox1 = new System.Windows.Forms.GroupBox();
     278            this.label3 = new System.Windows.Forms.Label();
     279            this.label2 = new System.Windows.Forms.Label();
     280            this.lstAccessTypes = new System.Windows.Forms.CheckedListBox();
     281            this.cboAccessTypeFilter = new System.Windows.Forms.ComboBox();
     282            this.grpDayOfWeek = new System.Windows.Forms.GroupBox();
     283            this.chkSun = new System.Windows.Forms.CheckBox();
     284            this.chkSat = new System.Windows.Forms.CheckBox();
     285            this.chkFri = new System.Windows.Forms.CheckBox();
     286            this.chkThu = new System.Windows.Forms.CheckBox();
     287            this.chkWed = new System.Windows.Forms.CheckBox();
     288            this.chkTue = new System.Windows.Forms.CheckBox();
     289            this.chkMon = new System.Windows.Forms.CheckBox();
     290            this.grpTimeOfDay = new System.Windows.Forms.GroupBox();
     291            this.rdoBoth = new System.Windows.Forms.RadioButton();
     292            this.rdoPM = new System.Windows.Forms.RadioButton();
     293            this.rdoAM = new System.Windows.Forms.RadioButton();
     294            this.label1 = new System.Windows.Forms.Label();
     295            this.calStartDate = new System.Windows.Forms.MonthCalendar();
     296            this.groupBox2 = new System.Windows.Forms.GroupBox();
     297            this.grdResult = new System.Windows.Forms.DataGrid();
     298            this.panel1.SuspendLayout();
     299            this.pnlDescription.SuspendLayout();
     300            this.grpDescription.SuspendLayout();
     301            this.groupBox1.SuspendLayout();
     302            this.grpDayOfWeek.SuspendLayout();
     303            this.grpTimeOfDay.SuspendLayout();
     304            this.groupBox2.SuspendLayout();
     305            ((System.ComponentModel.ISupportInitialize)(this.grdResult)).BeginInit();
     306            this.SuspendLayout();
     307            //
     308            // panel1
     309            //
     310            this.panel1.Controls.Add(this.cmdSearch);
     311            this.panel1.Controls.Add(this.cmdCancel);
     312            this.panel1.Controls.Add(this.cmdOK);
     313            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     314            this.panel1.Location = new System.Drawing.Point(0, 461);
     315            this.panel1.Name = "panel1";
     316            this.panel1.Size = new System.Drawing.Size(923, 40);
     317            this.panel1.TabIndex = 4;
     318            //
     319            // cmdSearch
     320            //
     321            this.cmdSearch.Location = new System.Drawing.Point(536, 8);
     322            this.cmdSearch.Name = "cmdSearch";
     323            this.cmdSearch.Size = new System.Drawing.Size(72, 24);
     324            this.cmdSearch.TabIndex = 2;
     325            this.cmdSearch.Text = "Search";
     326            this.cmdSearch.Click += new System.EventHandler(this.cmdSearch_Click);
     327            //
     328            // cmdCancel
     329            //
     330            this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     331            this.cmdCancel.Location = new System.Drawing.Point(616, 8);
     332            this.cmdCancel.Name = "cmdCancel";
     333            this.cmdCancel.Size = new System.Drawing.Size(64, 24);
     334            this.cmdCancel.TabIndex = 1;
     335            this.cmdCancel.Text = "Cancel";
     336            //
     337            // cmdOK
     338            //
     339            this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     340            this.cmdOK.Location = new System.Drawing.Point(128, 8);
     341            this.cmdOK.Name = "cmdOK";
     342            this.cmdOK.Size = new System.Drawing.Size(64, 24);
     343            this.cmdOK.TabIndex = 0;
     344            this.cmdOK.Text = "OK";
     345            this.cmdOK.Visible = false;
     346            this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
     347            //
     348            // pnlDescription
     349            //
     350            this.pnlDescription.Controls.Add(this.grpDescription);
     351            this.pnlDescription.Dock = System.Windows.Forms.DockStyle.Bottom;
     352            this.pnlDescription.Location = new System.Drawing.Point(0, 397);
     353            this.pnlDescription.Name = "pnlDescription";
     354            this.pnlDescription.Size = new System.Drawing.Size(923, 64);
     355            this.pnlDescription.TabIndex = 47;
     356            //
     357            // grpDescription
     358            //
     359            this.grpDescription.Controls.Add(this.lblDescription);
     360            this.grpDescription.Dock = System.Windows.Forms.DockStyle.Fill;
     361            this.grpDescription.Location = new System.Drawing.Point(0, 0);
     362            this.grpDescription.Name = "grpDescription";
     363            this.grpDescription.Size = new System.Drawing.Size(923, 64);
     364            this.grpDescription.TabIndex = 0;
     365            this.grpDescription.TabStop = false;
     366            this.grpDescription.Text = "Description";
     367            //
     368            // lblDescription
     369            //
     370            this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
     371            this.lblDescription.Location = new System.Drawing.Point(3, 16);
     372            this.lblDescription.Name = "lblDescription";
     373            this.lblDescription.Size = new System.Drawing.Size(917, 45);
     374            this.lblDescription.TabIndex = 1;
     375            this.lblDescription.Text = "Search for available appointment times using this panel.  You may narrow your sea" +
     376                "rch by selecting an access type or by selecting specific days of the week or tim" +
     377                "es of day.";
     378            //
     379            // groupBox1
     380            //
     381            this.groupBox1.Controls.Add(this.label3);
     382            this.groupBox1.Controls.Add(this.label2);
     383            this.groupBox1.Controls.Add(this.lstAccessTypes);
     384            this.groupBox1.Controls.Add(this.cboAccessTypeFilter);
     385            this.groupBox1.Controls.Add(this.grpDayOfWeek);
     386            this.groupBox1.Controls.Add(this.grpTimeOfDay);
     387            this.groupBox1.Controls.Add(this.label1);
     388            this.groupBox1.Controls.Add(this.calStartDate);
     389            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     390            this.groupBox1.Location = new System.Drawing.Point(0, 0);
     391            this.groupBox1.Name = "groupBox1";
     392            this.groupBox1.Size = new System.Drawing.Size(923, 208);
     393            this.groupBox1.TabIndex = 56;
     394            this.groupBox1.TabStop = false;
     395            this.groupBox1.Text = "Search Parameters";
     396            //
     397            // label3
     398            //
     399            this.label3.Location = new System.Drawing.Point(684, 64);
     400            this.label3.Name = "label3";
     401            this.label3.Size = new System.Drawing.Size(80, 16);
     402            this.label3.TabIndex = 63;
     403            this.label3.Text = "Access Type:";
     404            //
     405            // label2
     406            //
     407            this.label2.Location = new System.Drawing.Point(684, 21);
     408            this.label2.Name = "label2";
     409            this.label2.Size = new System.Drawing.Size(104, 16);
     410            this.label2.TabIndex = 62;
     411            this.label2.Text = "Access Group:";
     412            //
     413            // lstAccessTypes
     414            //
     415            this.lstAccessTypes.CheckOnClick = true;
     416            this.lstAccessTypes.HorizontalScrollbar = true;
     417            this.lstAccessTypes.Location = new System.Drawing.Point(661, 88);
     418            this.lstAccessTypes.MultiColumn = true;
     419            this.lstAccessTypes.Name = "lstAccessTypes";
     420            this.lstAccessTypes.Size = new System.Drawing.Size(250, 109);
     421            this.lstAccessTypes.TabIndex = 61;
     422            //
     423            // cboAccessTypeFilter
     424            //
     425            this.cboAccessTypeFilter.Location = new System.Drawing.Point(661, 40);
     426            this.cboAccessTypeFilter.Name = "cboAccessTypeFilter";
     427            this.cboAccessTypeFilter.Size = new System.Drawing.Size(250, 21);
     428            this.cboAccessTypeFilter.TabIndex = 60;
     429            this.cboAccessTypeFilter.Text = "cboAccessTypeFilter";
     430            this.cboAccessTypeFilter.SelectionChangeCommitted += new System.EventHandler(this.cboAccessTypeFilter_SelectionChangeCommitted);
     431            //
     432            // grpDayOfWeek
     433            //
     434            this.grpDayOfWeek.Controls.Add(this.chkSun);
     435            this.grpDayOfWeek.Controls.Add(this.chkSat);
     436            this.grpDayOfWeek.Controls.Add(this.chkFri);
     437            this.grpDayOfWeek.Controls.Add(this.chkThu);
     438            this.grpDayOfWeek.Controls.Add(this.chkWed);
     439            this.grpDayOfWeek.Controls.Add(this.chkTue);
     440            this.grpDayOfWeek.Controls.Add(this.chkMon);
     441            this.grpDayOfWeek.Location = new System.Drawing.Point(311, 94);
     442            this.grpDayOfWeek.Name = "grpDayOfWeek";
     443            this.grpDayOfWeek.Size = new System.Drawing.Size(240, 101);
     444            this.grpDayOfWeek.TabIndex = 59;
     445            this.grpDayOfWeek.TabStop = false;
     446            this.grpDayOfWeek.Text = "Day of the Week";
     447            //
     448            // chkSun
     449            //
     450            this.chkSun.Location = new System.Drawing.Point(176, 64);
     451            this.chkSun.Name = "chkSun";
     452            this.chkSun.Size = new System.Drawing.Size(48, 16);
     453            this.chkSun.TabIndex = 6;
     454            this.chkSun.Text = "Sun";
     455            //
     456            // chkSat
     457            //
     458            this.chkSat.Location = new System.Drawing.Point(128, 64);
     459            this.chkSat.Name = "chkSat";
     460            this.chkSat.Size = new System.Drawing.Size(48, 16);
     461            this.chkSat.TabIndex = 5;
     462            this.chkSat.Text = "Sat";
     463            //
     464            // chkFri
     465            //
     466            this.chkFri.Location = new System.Drawing.Point(72, 64);
     467            this.chkFri.Name = "chkFri";
     468            this.chkFri.Size = new System.Drawing.Size(48, 16);
     469            this.chkFri.TabIndex = 4;
     470            this.chkFri.Text = "Fri";
     471            //
     472            // chkThu
     473            //
     474            this.chkThu.Location = new System.Drawing.Point(16, 64);
     475            this.chkThu.Name = "chkThu";
     476            this.chkThu.Size = new System.Drawing.Size(48, 16);
     477            this.chkThu.TabIndex = 3;
     478            this.chkThu.Text = "Thu";
     479            //
     480            // chkWed
     481            //
     482            this.chkWed.Location = new System.Drawing.Point(128, 32);
     483            this.chkWed.Name = "chkWed";
     484            this.chkWed.Size = new System.Drawing.Size(48, 16);
     485            this.chkWed.TabIndex = 2;
     486            this.chkWed.Text = "Wed";
     487            //
     488            // chkTue
     489            //
     490            this.chkTue.Location = new System.Drawing.Point(72, 32);
     491            this.chkTue.Name = "chkTue";
     492            this.chkTue.Size = new System.Drawing.Size(48, 16);
     493            this.chkTue.TabIndex = 1;
     494            this.chkTue.Text = "Tue";
     495            //
     496            // chkMon
     497            //
     498            this.chkMon.Location = new System.Drawing.Point(16, 32);
     499            this.chkMon.Name = "chkMon";
     500            this.chkMon.Size = new System.Drawing.Size(48, 16);
     501            this.chkMon.TabIndex = 0;
     502            this.chkMon.Text = "Mon";
     503            //
     504            // grpTimeOfDay
     505            //
     506            this.grpTimeOfDay.Controls.Add(this.rdoBoth);
     507            this.grpTimeOfDay.Controls.Add(this.rdoPM);
     508            this.grpTimeOfDay.Controls.Add(this.rdoAM);
     509            this.grpTimeOfDay.Location = new System.Drawing.Point(311, 32);
     510            this.grpTimeOfDay.Name = "grpTimeOfDay";
     511            this.grpTimeOfDay.Size = new System.Drawing.Size(240, 48);
     512            this.grpTimeOfDay.TabIndex = 58;
     513            this.grpTimeOfDay.TabStop = false;
     514            this.grpTimeOfDay.Text = "Time of Day";
     515            //
     516            // rdoBoth
     517            //
     518            this.rdoBoth.Checked = true;
     519            this.rdoBoth.Location = new System.Drawing.Point(176, 24);
     520            this.rdoBoth.Name = "rdoBoth";
     521            this.rdoBoth.Size = new System.Drawing.Size(48, 16);
     522            this.rdoBoth.TabIndex = 2;
     523            this.rdoBoth.TabStop = true;
     524            this.rdoBoth.Text = "Both";
     525            //
     526            // rdoPM
     527            //
     528            this.rdoPM.Location = new System.Drawing.Point(96, 24);
     529            this.rdoPM.Name = "rdoPM";
     530            this.rdoPM.Size = new System.Drawing.Size(72, 16);
     531            this.rdoPM.TabIndex = 1;
     532            this.rdoPM.Text = "PM Only";
     533            //
     534            // rdoAM
     535            //
     536            this.rdoAM.Location = new System.Drawing.Point(16, 24);
     537            this.rdoAM.Name = "rdoAM";
     538            this.rdoAM.Size = new System.Drawing.Size(72, 16);
     539            this.rdoAM.TabIndex = 0;
     540            this.rdoAM.Text = "AM Only";
     541            //
     542            // label1
     543            //
     544            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     545            this.label1.Location = new System.Drawing.Point(16, 24);
     546            this.label1.Name = "label1";
     547            this.label1.Size = new System.Drawing.Size(136, 16);
     548            this.label1.TabIndex = 57;
     549            this.label1.Text = "Date Range:";
     550            //
     551            // calStartDate
     552            //
     553            this.calStartDate.Location = new System.Drawing.Point(16, 40);
     554            this.calStartDate.MaxSelectionCount = 62;
     555            this.calStartDate.Name = "calStartDate";
     556            this.calStartDate.TabIndex = 56;
     557            //
     558            // groupBox2
     559            //
     560            this.groupBox2.Controls.Add(this.grdResult);
     561            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     562            this.groupBox2.Location = new System.Drawing.Point(0, 208);
     563            this.groupBox2.Name = "groupBox2";
     564            this.groupBox2.Size = new System.Drawing.Size(923, 189);
     565            this.groupBox2.TabIndex = 57;
     566            this.groupBox2.TabStop = false;
     567            this.groupBox2.Text = "Search Result";
     568            //
     569            // grdResult
     570            //
     571            this.grdResult.CaptionVisible = false;
     572            this.grdResult.DataMember = "";
     573            this.grdResult.Dock = System.Windows.Forms.DockStyle.Fill;
     574            this.grdResult.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     575            this.grdResult.Location = new System.Drawing.Point(3, 16);
     576            this.grdResult.Name = "grdResult";
     577            this.grdResult.ReadOnly = true;
     578            this.grdResult.Size = new System.Drawing.Size(917, 170);
     579            this.grdResult.TabIndex = 0;
     580            this.grdResult.DoubleClick += new System.EventHandler(this.grdResult_DoubleClick);
     581            this.grdResult.CurrentCellChanged += new System.EventHandler(this.grdResult_CurrentCellChanged);
     582            //
     583            // DApptSearch
     584            //
     585            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     586            this.CancelButton = this.cmdCancel;
     587            this.ClientSize = new System.Drawing.Size(923, 501);
     588            this.Controls.Add(this.groupBox2);
     589            this.Controls.Add(this.groupBox1);
     590            this.Controls.Add(this.pnlDescription);
     591            this.Controls.Add(this.panel1);
     592            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     593            this.Name = "DApptSearch";
     594            this.Text = "Find Clinic Availability";
     595            this.panel1.ResumeLayout(false);
     596            this.pnlDescription.ResumeLayout(false);
     597            this.grpDescription.ResumeLayout(false);
     598            this.groupBox1.ResumeLayout(false);
     599            this.grpDayOfWeek.ResumeLayout(false);
     600            this.grpTimeOfDay.ResumeLayout(false);
     601            this.groupBox2.ResumeLayout(false);
     602            ((System.ComponentModel.ISupportInitialize)(this.grdResult)).EndInit();
     603            this.ResumeLayout(false);
    604604
    605605                }
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DApptSearch.resx

    r614 r908  
    44    Microsoft ResX Schema
    55   
    6     Version 1.3
     6    Version 2.0
    77   
    88    The primary goals of this format is to allow a simple XML format
     
    1515    ... ado.net/XML headers & schema ...
    1616    <resheader name="resmimetype">text/microsoft-resx</resheader>
    17     <resheader name="version">1.3</resheader>
     17    <resheader name="version">2.0</resheader>
    1818    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    1919    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    20     <data name="Name1">this is my long string</data>
     20    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    2121    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    2222    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
    23         [base64 mime encoded serialized .NET Framework object]
     23        <value>[base64 mime encoded serialized .NET Framework object]</value>
    2424    </data>
    2525    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    26         [base64 mime encoded string representing a byte array form of the .NET Framework object]
     26        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
     27        <comment>This is a comment</comment>
    2728    </data>
    2829               
     
    3637    mimetype set.
    3738   
    38     The mimetype is used forserialized objects, and tells the
     39    The mimetype is used for serialized objects, and tells the
    3940    ResXResourceReader how to depersist the object. This is currently not
    4041    extensible. For a given mimetype the value must be set accordingly:
     
    4647    mimetype: application/x-microsoft.net.object.binary.base64
    4748    value   : The object must be serialized with
    48             : System.Serialization.Formatters.Binary.BinaryFormatter
     49            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    4950            : and then encoded with base64 encoding.
    5051   
     
    6061    -->
    6162  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
     63    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    6264    <xsd:element name="root" msdata:IsDataSet="true">
    6365      <xsd:complexType>
    6466        <xsd:choice maxOccurs="unbounded">
     67          <xsd:element name="metadata">
     68            <xsd:complexType>
     69              <xsd:sequence>
     70                <xsd:element name="value" type="xsd:string" minOccurs="0" />
     71              </xsd:sequence>
     72              <xsd:attribute name="name" use="required" type="xsd:string" />
     73              <xsd:attribute name="type" type="xsd:string" />
     74              <xsd:attribute name="mimetype" type="xsd:string" />
     75              <xsd:attribute ref="xml:space" />
     76            </xsd:complexType>
     77          </xsd:element>
     78          <xsd:element name="assembly">
     79            <xsd:complexType>
     80              <xsd:attribute name="alias" type="xsd:string" />
     81              <xsd:attribute name="name" type="xsd:string" />
     82            </xsd:complexType>
     83          </xsd:element>
    6584          <xsd:element name="data">
    6685            <xsd:complexType>
     
    6988                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
    7089              </xsd:sequence>
    71               <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
     90              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
    7291              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
    7392              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
     93              <xsd:attribute ref="xml:space" />
    7494            </xsd:complexType>
    7595          </xsd:element>
     
    90110  </resheader>
    91111  <resheader name="version">
    92     <value>1.3</value>
     112    <value>2.0</value>
    93113  </resheader>
    94114  <resheader name="reader">
    95     <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     115    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    96116  </resheader>
    97117  <resheader name="writer">
    98     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    99119  </resheader>
    100   <data name="panel1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    101     <value>False</value>
    102   </data>
    103   <data name="panel1.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    104     <value>True</value>
    105   </data>
    106   <data name="panel1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    107     <value>Private</value>
    108   </data>
    109   <data name="panel1.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    110     <value>8, 8</value>
    111   </data>
    112   <data name="panel1.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    113     <value>True</value>
    114   </data>
    115   <data name="panel1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    116     <value>Private</value>
    117   </data>
    118   <data name="cmdSearch.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    119     <value>False</value>
    120   </data>
    121   <data name="cmdSearch.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    122     <value>Private</value>
    123   </data>
    124   <data name="cmdSearch.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    125     <value>Private</value>
    126   </data>
    127   <data name="cmdCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    128     <value>False</value>
    129   </data>
    130   <data name="cmdCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    131     <value>Private</value>
    132   </data>
    133   <data name="cmdCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    134     <value>Private</value>
    135   </data>
    136   <data name="cmdOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    137     <value>False</value>
    138   </data>
    139   <data name="cmdOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    140     <value>Private</value>
    141   </data>
    142   <data name="cmdOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    143     <value>Private</value>
    144   </data>
    145   <data name="pnlDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    146     <value>False</value>
    147   </data>
    148   <data name="pnlDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    149     <value>True</value>
    150   </data>
    151   <data name="pnlDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    152     <value>Private</value>
    153   </data>
    154   <data name="pnlDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    155     <value>8, 8</value>
    156   </data>
    157   <data name="pnlDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    158     <value>True</value>
    159   </data>
    160   <data name="pnlDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    161     <value>Private</value>
    162   </data>
    163   <data name="grpDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    164     <value>Private</value>
    165   </data>
    166   <data name="grpDescription.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    167     <value>8, 8</value>
    168   </data>
    169   <data name="grpDescription.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    170     <value>True</value>
    171   </data>
    172   <data name="grpDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    173     <value>False</value>
    174   </data>
    175   <data name="grpDescription.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    176     <value>True</value>
    177   </data>
    178   <data name="grpDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    179     <value>Private</value>
    180   </data>
    181   <data name="lblDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    182     <value>False</value>
    183   </data>
    184   <data name="lblDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    185     <value>Private</value>
    186   </data>
    187   <data name="lblDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    188     <value>Private</value>
    189   </data>
    190   <data name="groupBox1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    191     <value>Private</value>
    192   </data>
    193   <data name="groupBox1.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    194     <value>8, 8</value>
    195   </data>
    196   <data name="groupBox1.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    197     <value>True</value>
    198   </data>
    199   <data name="groupBox1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    200     <value>False</value>
    201   </data>
    202   <data name="groupBox1.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    203     <value>True</value>
    204   </data>
    205   <data name="groupBox1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    206     <value>Private</value>
    207   </data>
    208   <data name="label3.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    209     <value>False</value>
    210   </data>
    211   <data name="label3.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    212     <value>Private</value>
    213   </data>
    214   <data name="label3.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    215     <value>Private</value>
    216   </data>
    217   <data name="label2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    218     <value>False</value>
    219   </data>
    220   <data name="label2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    221     <value>Private</value>
    222   </data>
    223   <data name="label2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    224     <value>Private</value>
    225   </data>
    226   <data name="lstAccessTypes.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    227     <value>Private</value>
    228   </data>
    229   <data name="lstAccessTypes.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    230     <value>False</value>
    231   </data>
    232   <data name="lstAccessTypes.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    233     <value>Private</value>
    234   </data>
    235   <data name="cboAccessTypeFilter.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    236     <value>Private</value>
    237   </data>
    238   <data name="cboAccessTypeFilter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    239     <value>False</value>
    240   </data>
    241   <data name="cboAccessTypeFilter.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    242     <value>Private</value>
    243   </data>
    244   <data name="grpDayOfWeek.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    245     <value>Private</value>
    246   </data>
    247   <data name="grpDayOfWeek.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    248     <value>8, 8</value>
    249   </data>
    250   <data name="grpDayOfWeek.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    251     <value>True</value>
    252   </data>
    253   <data name="grpDayOfWeek.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    254     <value>False</value>
    255   </data>
    256   <data name="grpDayOfWeek.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    257     <value>True</value>
    258   </data>
    259   <data name="grpDayOfWeek.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    260     <value>Private</value>
    261   </data>
    262   <data name="chkSun.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    263     <value>False</value>
    264   </data>
    265   <data name="chkSun.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    266     <value>Private</value>
    267   </data>
    268   <data name="chkSun.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    269     <value>Private</value>
    270   </data>
    271   <data name="chkSat.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    272     <value>False</value>
    273   </data>
    274   <data name="chkSat.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    275     <value>Private</value>
    276   </data>
    277   <data name="chkSat.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    278     <value>Private</value>
    279   </data>
    280   <data name="chkFri.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    281     <value>False</value>
    282   </data>
    283   <data name="chkFri.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    284     <value>Private</value>
    285   </data>
    286   <data name="chkFri.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    287     <value>Private</value>
    288   </data>
    289   <data name="chkThu.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    290     <value>False</value>
    291   </data>
    292   <data name="chkThu.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    293     <value>Private</value>
    294   </data>
    295   <data name="chkThu.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    296     <value>Private</value>
    297   </data>
    298   <data name="chkWed.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    299     <value>False</value>
    300   </data>
    301   <data name="chkWed.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    302     <value>Private</value>
    303   </data>
    304   <data name="chkWed.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    305     <value>Private</value>
    306   </data>
    307   <data name="chkTue.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    308     <value>False</value>
    309   </data>
    310   <data name="chkTue.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    311     <value>Private</value>
    312   </data>
    313   <data name="chkTue.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    314     <value>Private</value>
    315   </data>
    316   <data name="chkMon.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    317     <value>False</value>
    318   </data>
    319   <data name="chkMon.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    320     <value>Private</value>
    321   </data>
    322   <data name="chkMon.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    323     <value>Private</value>
    324   </data>
    325   <data name="grpTimeOfDay.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    326     <value>Private</value>
    327   </data>
    328   <data name="grpTimeOfDay.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    329     <value>8, 8</value>
    330   </data>
    331   <data name="grpTimeOfDay.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    332     <value>True</value>
    333   </data>
    334   <data name="grpTimeOfDay.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    335     <value>False</value>
    336   </data>
    337   <data name="grpTimeOfDay.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    338     <value>True</value>
    339   </data>
    340   <data name="grpTimeOfDay.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    341     <value>Private</value>
    342   </data>
    343   <data name="rdoBoth.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    344     <value>False</value>
    345   </data>
    346   <data name="rdoBoth.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    347     <value>Private</value>
    348   </data>
    349   <data name="rdoBoth.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    350     <value>Private</value>
    351   </data>
    352   <data name="rdoPM.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    353     <value>False</value>
    354   </data>
    355   <data name="rdoPM.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    356     <value>Private</value>
    357   </data>
    358   <data name="rdoPM.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    359     <value>Private</value>
    360   </data>
    361   <data name="rdoAM.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    362     <value>False</value>
    363   </data>
    364   <data name="rdoAM.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    365     <value>Private</value>
    366   </data>
    367   <data name="rdoAM.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    368     <value>Private</value>
    369   </data>
    370   <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    371     <value>False</value>
    372   </data>
    373   <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    374     <value>Private</value>
    375   </data>
    376   <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    377     <value>Private</value>
    378   </data>
    379   <data name="calStartDate.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    380     <value>Private</value>
    381   </data>
    382   <data name="calStartDate.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    383     <value>Private</value>
    384   </data>
    385   <data name="calStartDate.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    386     <value>False</value>
    387   </data>
    388   <data name="groupBox2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    389     <value>Private</value>
    390   </data>
    391   <data name="groupBox2.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    392     <value>8, 8</value>
    393   </data>
    394   <data name="groupBox2.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    395     <value>True</value>
    396   </data>
    397   <data name="groupBox2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    398     <value>False</value>
    399   </data>
    400   <data name="groupBox2.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    401     <value>True</value>
    402   </data>
    403   <data name="groupBox2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    404     <value>Private</value>
    405   </data>
    406   <data name="grdResult.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    407     <value>False</value>
    408   </data>
    409   <data name="grdResult.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    410     <value>Private</value>
    411   </data>
    412   <data name="grdResult.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    413     <value>Private</value>
    414   </data>
    415   <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    416     <value>False</value>
    417   </data>
    418   <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    419     <value>(Default)</value>
    420   </data>
    421   <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    422     <value>False</value>
    423   </data>
    424   <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    425     <value>False</value>
    426   </data>
    427   <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    428     <value>8, 8</value>
    429   </data>
    430   <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    431     <value>True</value>
    432   </data>
    433   <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    434     <value>80</value>
    435   </data>
    436   <data name="$this.Name">
    437     <value>DApptSearch</value>
    438   </data>
    439   <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    440     <value>True</value>
    441   </data>
    442   <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    443     <value>Private</value>
    444   </data>
    445120</root>
Note: See TracChangeset for help on using the changeset viewer.