A couple of final fixes before the v 1.5 Release.
1. Moved the header for appointment slip and routing slip up by 25 pixels. 2. Clarified and undo message in CGView.
This commit is contained in:
parent
801a3b99cd
commit
0c5eac0eb5
|
@ -2002,7 +2002,7 @@ namespace IndianHealthService.ClinicalScheduling
|
||||||
{
|
{
|
||||||
if (a.CheckInTime.Ticks > 0)
|
if (a.CheckInTime.Ticks > 0)
|
||||||
{
|
{
|
||||||
MessageBox.Show("You must Un-checkin the appointment first before removing it.");
|
MessageBox.Show("You must undo the check-in first before removing the appointment.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,8 @@
|
||||||
<RemoteDebugMachine>
|
<RemoteDebugMachine>
|
||||||
</RemoteDebugMachine>
|
</RemoteDebugMachine>
|
||||||
<StartAction>Project</StartAction>
|
<StartAction>Project</StartAction>
|
||||||
<StartArguments>/s=192.168.56.101 /p=9260 /a=shabiel12 /v=catdog.77</StartArguments>
|
<StartArguments>
|
||||||
|
</StartArguments>
|
||||||
<StartPage>
|
<StartPage>
|
||||||
</StartPage>
|
</StartPage>
|
||||||
<StartProgram>
|
<StartProgram>
|
||||||
|
|
Binary file not shown.
|
@ -155,7 +155,7 @@ namespace IndianHealthService.ClinicalScheduling
|
||||||
{
|
{
|
||||||
X = e.MarginBounds.X,
|
X = e.MarginBounds.X,
|
||||||
Y = e.PageBounds.Y,
|
Y = e.PageBounds.Y,
|
||||||
Height = e.MarginBounds.Y - e.PageBounds.Y,
|
Height = e.MarginBounds.Y - e.PageBounds.Y - 50,
|
||||||
Width = e.MarginBounds.Width
|
Width = e.MarginBounds.Width
|
||||||
};
|
};
|
||||||
Rectangle footerArea = new Rectangle()
|
Rectangle footerArea = new Rectangle()
|
||||||
|
@ -562,9 +562,9 @@ namespace IndianHealthService.ClinicalScheduling
|
||||||
Rectangle pageArea = e.PageBounds;
|
Rectangle pageArea = e.PageBounds;
|
||||||
Rectangle headerArea = new Rectangle()
|
Rectangle headerArea = new Rectangle()
|
||||||
{
|
{
|
||||||
X = e.MarginBounds.X,
|
X = e.MarginBounds.X,
|
||||||
Y = e.PageBounds.Y,
|
Y = e.PageBounds.Y, //0
|
||||||
Height = e.MarginBounds.Y - e.PageBounds.Y,
|
Height = e.MarginBounds.Y - e.PageBounds.Y - 50, //100px - 50px
|
||||||
Width = e.MarginBounds.Width
|
Width = e.MarginBounds.Width
|
||||||
};
|
};
|
||||||
Rectangle footerArea = new Rectangle()
|
Rectangle footerArea = new Rectangle()
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue