Changeset 908 for Scheduling/trunk/cs/bsdx0200GUISourceCode/DApptSearch.cs
- Timestamp:
- Aug 11, 2010, 8:42:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/DApptSearch.cs
r614 r908 268 268 private void InitializeComponent() 269 269 { 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 // panel1309 //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 // cmdSearch320 //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 // cmdCancel329 //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 // cmdOK338 //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 // pnlDescription349 //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 // grpDescription358 //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 // lblDescription369 //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 // groupBox1380 //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 // label3398 //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 // label2406 //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 // lstAccessTypes414 //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 // cboAccessTypeFilter424 //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 // grpDayOfWeek433 //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 // chkSun449 //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 // chkSat457 //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 // chkFri465 //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 // chkThu473 //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 // chkWed481 //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 // chkTue489 //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 // chkMon497 //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 // grpTimeOfDay505 //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 // rdoBoth517 //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 // rdoPM527 //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 // rdoAM535 //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 // label1543 //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 // calStartDate552 //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 // groupBox2559 //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 // grdResult570 //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 // DApptSearch584 //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); 604 604 605 605 }
Note:
See TracChangeset
for help on using the changeset viewer.
