Ignore:
Timestamp:
Apr 14, 2011, 8:33:14 AM (13 years ago)
Author:
Sam Habiel
Message:

CalendarGrid: Many changes:

  1. Dragover handler to handle auto scrolling when dragging. Also highlights destination cell in dragging.
  2. Solution for the click-right click problem by better handling of right click issues.
  3. New method OnRButtonDown()
  4. Extra comments everywhere.
  5. Fix for single column being enabled when there are multiple resources. Columns property now calls this.SetColumnInfo() to rectify that problem.

CGDocument:

  1. EditAppoitment Used to send request a refresh from the DB and update the view itself, rather than letting the view handle that. That's now changed.

CGDocumentManager:

  1. MessageBox displayed during login splash now are shown BY the splash form.

CGView:

  1. Shortcuts and some display text updated.
  2. Splash screen when updating now removed.
  3. If print appointment slip checkbox is checked when EditAppointment is chosen, now it will print the routing slip.
  4. Tiny change in appointment structure generated during drag and drop (added Patient member, as it was causing a crash)

DApptSearch:

  1. Change of name of Appointment to Slot, for better user understanding.

DSplash:

  1. RemoteMessage box methods and associated delegates for mickey mousing the form from another thread.

Updated release exes and dlls

File:
1 edited

Legend:

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

    r1131 r1143  
    400400                catch (System.Net.Sockets.SocketException)
    401401                {
    402                     MessageBox.Show("Cannot connect to VistA. Network Error");
     402                    m_ds.RemoteMsgBox("Can't connect to server! Network Error");
    403403                    return false;
    404404                }
     
    438438                catch (System.Net.Sockets.SocketException)
    439439                {
    440                     MessageBox.Show("Cannot connect to VistA. Network Error");
     440                    m_ds.RemoteMsgBox("Cannot connect to VistA. Network Error");
    441441                }
    442442                catch (BMXNetException ex)
    443443                {
    444                     if (MessageBox.Show("Unable to connect to VistA.  " + ex.Message, "Clinical Scheduling", MessageBoxButtons.RetryCancel) == DialogResult.Retry)
     444                    if (m_ds.RemoteMsgBox("Unable to connect to VistA.  " + ex.Message, "Clinical Scheduling", MessageBoxButtons.RetryCancel) == DialogResult.Retry)
    445445                    {
    446446                        bRetry = true;
Note: See TracChangeset for help on using the changeset viewer.