Changeset 1248 for Scheduling/trunk
- Timestamp:
- Sep 9, 2011, 2:15:30 PM (13 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r1176 r1248 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("1.6. 0.*")]30 [assembly: AssemblyVersion("1.6.1.*")] 31 31 32 32 // … … 58 58 [assembly: AssemblyKeyFile("")] 59 59 [assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersionAttribute("1.6. 0.0")]60 [assembly: AssemblyFileVersionAttribute("1.6.1.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj
r1242 r1248 483 483 <Name>BMXNet</Name> 484 484 </ProjectReference> 485 <ProjectReference Include="..\EnhancedPrintPreview2\PrintPreview\PrintPreview.csproj"> 486 <Project>{9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}</Project> 487 <Name>PrintPreview</Name> 488 </ProjectReference> 485 489 </ItemGroup> 486 490 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r1176 r1248 37 37 </RemoteDebugMachine> 38 38 <StartAction>Project</StartAction> 39 <StartArguments>/s=1 72.16.16.108 /p=9250 /a=sal,123 /v=abc.123@</StartArguments>39 <StartArguments>/s=10.10.10.103 /p=9260 /a=shabiel12 /v=catdog.66</StartArguments> 40 40 <StartPage> 41 41 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.sln
r1242 r1248 4 4 EndProject 5 5 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\BMX2\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}" 6 EndProject 7 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrintPreview", "..\EnhancedPrintPreview2\PrintPreview\PrintPreview.csproj", "{9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}" 6 8 EndProject 7 9 Global … … 19 21 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 22 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Release|Any CPU.Build.0 = Release|Any CPU 23 {9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 24 {9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}.Debug|Any CPU.Build.0 = Debug|Any CPU 25 {9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}.Release|Any CPU.ActiveCfg = Release|Any CPU 26 {9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}.Release|Any CPU.Build.0 = Release|Any CPU 21 27 EndGlobalSection 22 28 GlobalSection(SolutionProperties) = preSolution -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientLetter.cs
r1117 r1248 10 10 /// Handles Printing of letters (Reminder, Rebook, Cancellation) and a Report. Contains a Print Preview dialog. 11 11 /// </summary> 12 public class DPatientLetter : System.Windows.Forms.PrintPreviewDialog12 public class DPatientLetter : VR.PrintPreview.EnhancedPrintPreviewDialog 13 13 { 14 14 /// <summary> … … 111 111 _dsApptDisplay.BSDXResource.Merge(Resources); 112 112 113 this. PrintPreviewControl.Document = printAppts;113 this.Document = printAppts; 114 114 } 115 115 catch (Exception ex) … … 152 152 } 153 153 154 PrintPreviewControl.Document = printRebookLetters;154 this.Document = printRebookLetters; 155 155 156 156 } … … 185 185 } 186 186 187 PrintPreviewControl.Document = printRebookLetters;187 this.Document = printRebookLetters; 188 188 } 189 189 … … 214 214 _dsRebookAppts.BSDXResource.Merge(Resources); 215 215 216 PrintPreviewControl.Document = printCancelLetters;216 this.Document = printCancelLetters; 217 217 218 218 } … … 256 256 _dsApptDisplay.BSDXResource.Merge(Resources); 257 257 258 this. PrintPreviewControl.Document = printReminderLetters;258 this.Document = printReminderLetters; 259 259 260 260 } … … 297 297 298 298 private void printAppts_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) 299 { 299 { 300 300 //Each time we enter here, we start off with a new page number - we start off with zero 301 301 _pageNumber++; //becomes one first time through
Note:
See TracChangeset
for help on using the changeset viewer.