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/bin/Release/ClinicalScheduling.XML

    r755 r772  
    500500            </summary>
    501501        </member>
     502        <member name="T:IndianHealthService.ClinicalScheduling.Printing">
     503            <summary>
     504            Class that encapsulates printing functions in Clinical Scheduling
     505            </summary>
     506        </member>
     507        <member name="M:IndianHealthService.ClinicalScheduling.Printing.PrintAppointments(IndianHealthService.ClinicalScheduling.dsPatientApptDisplay2,System.Drawing.Printing.PrintPageEventArgs,System.DateTime,System.DateTime,System.Int32,System.Int32@)">
     508            <summary>
     509            Print Appointments
     510            </summary>
     511            <param name="ds">Strongly Typed DataSet contains Resources and Appointments</param>
     512            <param name="e">PrintPageEventArgs from PrintDocument Print handler</param>
     513            <param name="beg">Begin Datetime to print appointments</param>
     514            <param name="end">End Datetime to print appointments</param>
     515            <remarks>beg and end have no effect on operation--they are there for documentation for user only</remarks>
     516        </member>
    502517        <member name="T:IndianHealthService.ClinicalScheduling.DResourceGroupItem">
    503518            <summary>
     
    676691        </member>
    677692        <member name="T:IndianHealthService.ClinicalScheduling.DSelectLetterClinics">
    678             <summary>
    679             Summary description for DSelectLetterClinics.
     693             <summary>
     694             Use this dialog to select resources and dates (begin and end) for their examination.
     695             <example>
     696             DSelectLetterClinics ds = new DSelectLetterClinics();
     697             ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Clinic Cancellation Letters");
     698                ds.ShowDialog(this)                                     
     699           
     700             //get the resource names and call the letter printer
     701                string sClinics = ds.SelectedClinics;
     702                DateTime dtBegin = ds.BeginDate;
     703                DateTime dtEnd = ds.EndDate;
     704             </example>
     705             </summary>
     706             
     707        </member>
     708        <member name="M:IndianHealthService.ClinicalScheduling.DSelectLetterClinics.#ctor">
     709            <summary>
     710            Ctor; also sets default enter and cancel buttons
    680711            </summary>
    681712        </member>
Note: See TracChangeset for help on using the changeset viewer.