Ignore:
Timestamp:
Nov 18, 2010, 7:47:04 AM (14 years ago)
Author:
Sam Habiel
Message:

UCPatientAppts: Fixes printing empty table bug reported by EHS.
DAccessTemplate: Various usability improvements.
CGDocumentManager: Fixed Delegate code so that it can operate asynchronously
CGAVView: Some temporary fixes (not totally usable): Added non-functional Delete Slots menu option; Added Background worker for saving acccess slots
In the future, Delete Slots will work; and will use ADO.net Updatable datatable for saving access slots.
calendarGrid: just some comments for now
AssemblyInfo: bumped version up to v1.4.2

File:
1 edited

Legend:

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

    r966 r1011  
    10351035                }
    10361036
    1037                 delegate DataTable RPMSDataTableDelegate(string CommandString, string TableName);
     1037                public delegate DataTable RPMSDataTableDelegate(string CommandString, string TableName);
    10381038
    10391039                public DataTable RPMSDataTable(string sSQL, string sTableName)
     
    10481048                        try
    10491049                        {
    1050                                 System.IntPtr pHandle = this.Handle;
     1050                                //System.IntPtr pHandle = this.Handle;
    10511051                                RPMSDataTableDelegate rdtd = new RPMSDataTableDelegate(ConnectInfo.RPMSDataTable);
    10521052                                dtOut = (DataTable) this.Invoke(rdtd, new object[] {sSQL, sTableName});
Note: See TracChangeset for help on using the changeset viewer.