Changeset 1248


Ignore:
Timestamp:
Sep 9, 2011, 2:15:30 PM (13 years ago)
Author:
Sam Habiel
Message:

Scheduling v 1.61. Dll and exes. Added new control to handle print previewing; control located in PrintPreview.dll.
PrintPreview.dll is now added to project.
DPatientLetter.cs now uses the new print preview control.

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
1 added
9 edited

Legend:

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

    r1176 r1248  
    2828// by using the '*' as shown below:
    2929
    30 [assembly: AssemblyVersion("1.6.0.*")]
     30[assembly: AssemblyVersion("1.6.1.*")]
    3131
    3232//
     
    5858[assembly: AssemblyKeyFile("")]
    5959[assembly: AssemblyKeyName("")]
    60 [assembly: AssemblyFileVersionAttribute("1.6.0.0")]
     60[assembly: AssemblyFileVersionAttribute("1.6.1.0")]
    6161[assembly: ComVisibleAttribute(false)]
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj

    r1242 r1248  
    483483      <Name>BMXNet</Name>
    484484    </ProjectReference>
     485    <ProjectReference Include="..\EnhancedPrintPreview2\PrintPreview\PrintPreview.csproj">
     486      <Project>{9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}</Project>
     487      <Name>PrintPreview</Name>
     488    </ProjectReference>
    485489  </ItemGroup>
    486490  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user

    r1176 r1248  
    3737    </RemoteDebugMachine>
    3838    <StartAction>Project</StartAction>
    39     <StartArguments>/s=172.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>
    4040    <StartPage>
    4141    </StartPage>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.sln

    r1242 r1248  
    44EndProject
    55Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\BMX2\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}"
     6EndProject
     7Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrintPreview", "..\EnhancedPrintPreview2\PrintPreview\PrintPreview.csproj", "{9E8D433B-EFD1-4253-BD2C-C4E0DB0BFD0E}"
    68EndProject
    79Global
     
    1921                {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Release|Any CPU.ActiveCfg = Release|Any CPU
    2022                {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
    2127        EndGlobalSection
    2228        GlobalSection(SolutionProperties) = preSolution
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientLetter.cs

    r1117 r1248  
    1010        /// Handles Printing of letters (Reminder, Rebook, Cancellation) and a Report. Contains a Print Preview dialog.
    1111        /// </summary>
    12         public class DPatientLetter : System.Windows.Forms.PrintPreviewDialog
     12        public class DPatientLetter : VR.PrintPreview.EnhancedPrintPreviewDialog
    1313    {
    1414                /// <summary>
     
    111111                _dsApptDisplay.BSDXResource.Merge(Resources);
    112112
    113                 this.PrintPreviewControl.Document = printAppts;
     113                this.Document = printAppts;
    114114            }
    115115                        catch (Exception ex)
     
    152152                        }
    153153
    154             PrintPreviewControl.Document = printRebookLetters;
     154            this.Document = printRebookLetters;
    155155
    156156                }
     
    185185            }
    186186
    187             PrintPreviewControl.Document = printRebookLetters;
     187            this.Document = printRebookLetters;
    188188        }
    189189
     
    214214                _dsRebookAppts.BSDXResource.Merge(Resources);
    215215               
    216                 PrintPreviewControl.Document = printCancelLetters;
     216                this.Document = printCancelLetters;
    217217
    218218                        }
     
    256256                _dsApptDisplay.BSDXResource.Merge(Resources);
    257257
    258                 this.PrintPreviewControl.Document = printReminderLetters;
     258                this.Document = printReminderLetters;
    259259                               
    260260                        }
     
    297297
    298298        private void printAppts_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
    299         {
     299        {           
    300300            //Each time we enter here, we start off with a new page number - we start off with zero
    301301            _pageNumber++; //becomes one first time through
Note: See TracChangeset for help on using the changeset viewer.