Changeset 884 for Scheduling
- Timestamp:
- Jul 18, 2010, 8:27:35 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r804 r884 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("1. 2.*")]30 [assembly: AssemblyVersion("1.3.*")] 31 31 32 32 // … … 58 58 [assembly: AssemblyKeyFile("")] 59 59 [assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersionAttribute("1. 2.0.0")]60 [assembly: AssemblyFileVersionAttribute("1.3.0.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj
r869 r884 97 97 <NoWarn> 98 98 </NoWarn> 99 <Optimize> true</Optimize>99 <Optimize>false</Optimize> 100 100 <RegisterForComInterop>false</RegisterForComInterop> 101 101 <RemoveIntegerChecks>false</RemoveIntegerChecks> … … 429 429 </ItemGroup> 430 430 <ItemGroup> 431 <ProjectReference Include="..\..\..\ bmx_rep\BMX2\BMXNet\BMXNet.csproj">431 <ProjectReference Include="..\..\..\BMX\bmx_0200scr\BMX2\BMXNet\BMXNet.csproj"> 432 432 <Project>{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}</Project> 433 433 <Name>BMXNet</Name> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r869 r884 36 36 </RemoteDebugMachine> 37 37 <StartAction>Project</StartAction> 38 <StartArguments>/s=1 92.168.254.129 /p=9260 /a=shabiel12 /v=catdog.55/e=windows-1256</StartArguments>38 <StartArguments>/s=172.16.17.51 /p=9240 /a=shabiel12 /v=catdog.44 /e=windows-1256</StartArguments> 39 39 <StartPage> 40 40 </StartPage> … … 55 55 </RemoteDebugMachine> 56 56 <StartAction>Project</StartAction> 57 <StartArguments>/s=1 92.168.254.129 /p=9260 /a=shabiel12 /v=catdog.55/e=windows-1256</StartArguments>57 <StartArguments>/s=172.16.17.51 /p=9240 /a=shabiel12 /v=catdog.44 /e=windows-1256</StartArguments> 58 58 <StartPage> 59 59 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.sln
r864 r884 4 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClinicalScheduling", "ClinicalScheduling.csproj", "{8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}" 5 5 EndProject 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\..\..\ bmx_rep\BMX2\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}"6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\..\..\BMX\bmx_0200scr\BMX2\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}" 7 7 EndProject 8 8 Global -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientLetter.cs
r850 r884 317 317 _currentApptPrinting = 0; 318 318 e.HasMorePages = true; 319 } 319 return; 320 } 321 322 // if neither of these conditions is true, then we are done with printing. 323 // So reset counters for next one. Fixes ticket #15 on https://trac.opensourcevista.net/ticket/15 324 _currentResourcePrinting = 0; 325 _currentApptPrinting = 0; 326 _pageNumber = 0; 320 327 } 321 328 … … 336 343 _currentApptPrinting++; 337 344 if (_currentApptPrinting < _dsApptDisplay.PatientAppts.Count) 345 { 338 346 e.HasMorePages = true; 339 } 347 return; 348 } 349 } 350 351 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 352 _currentApptPrinting = 0; 340 353 341 354 } … … 357 370 _currentApptPrinting++; 358 371 if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count) 372 { 359 373 e.HasMorePages = true; 360 } 361 374 return; 375 } 376 } 377 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 378 _currentApptPrinting = 0; 362 379 } 363 380 … … 379 396 _currentApptPrinting++; 380 397 if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count) 398 { 381 399 e.HasMorePages = true; 382 } 400 return; 401 } 402 } 403 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 404 _currentApptPrinting = 0; 383 405 } 384 406 }
Note:
See TracChangeset
for help on using the changeset viewer.