Ignore:
Timestamp:
May 21, 2010, 9:03:45 PM (14 years ago)
Author:
Sam Habiel
Message:

Removal of Crystal Reports
Partial Rework of Clinic Patient List report
Other reports that used Crystal don't work yet.
Fixes for Strongly typed DataTables (change the RESOURCEID from uint to int) to support table merge from untyped table.
Support for command line arguments: /s= for server /p= for port /a= for access code /v= for verify code
Only the following combinations work: none; /s and /p; /s, /p, /a, /v

File:
1 edited

Legend:

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

    r614 r772  
    99{
    1010        /// <summary>
    11         /// Summary description for DSelectLetterClinics.
     11        /// Use this dialog to select resources and dates (begin and end) for their examination.
     12    /// <example>
     13    /// DSelectLetterClinics ds = new DSelectLetterClinics();
     14    /// ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Clinic Cancellation Letters");
     15        ///     ds.ShowDialog(this)                                     
     16    ///
     17        /// //get the resource names and call the letter printer
     18        ///     string sClinics = ds.SelectedClinics;
     19        ///     DateTime dtBegin = ds.BeginDate;
     20        ///     DateTime dtEnd = ds.EndDate;
     21    /// </example>
    1222        /// </summary>
     23    ///
    1324        public class DSelectLetterClinics : System.Windows.Forms.Form
    1425        {
     
    3142                private System.ComponentModel.Container components = null;
    3243
    33                 public DSelectLetterClinics()
     44                /// <summary>
     45                /// Ctor; also sets default enter and cancel buttons
     46                /// </summary>
     47        public DSelectLetterClinics()
    3448                {
    3549                        InitializeComponent();
     50            this.AcceptButton = cmdOK;
     51            this.CancelButton = cmdCancel;
    3652                }
    3753
Note: See TracChangeset for help on using the changeset viewer.