Changeset 966 for Scheduling
- Timestamp:
- Sep 29, 2010, 3:44:52 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r935 r966 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("1.4. 0.*")]30 [assembly: AssemblyVersion("1.4.1.*")] 31 31 32 32 // … … 58 58 [assembly: AssemblyKeyFile("")] 59 59 [assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersionAttribute("1.4. 0.0")]60 [assembly: AssemblyFileVersionAttribute("1.4.1.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs
r964 r966 511 511 public void LoadResourceUserTable(bool bAllUsers) 512 512 { 513 string sCommandText = "SELECT BMXIEN RESOURCEUSER_ID, RESOURCENAME, INTERNAL[RESOURCENAME] RESOURCEID, OVERBOOK, MODIFY_SCHEDULE, MODIFY_APPOINTMENTS, USERNAME, INTERNAL[USERNAME] USERID FROM BSDX_RESOURCE_USERWHERE INTERNAL[INSTITUTION]=" + m_ConnectInfo.DUZ2;513 string sCommandText = "SELECT BMXIEN RESOURCEUSER_ID, RESOURCENAME, INTERNAL[RESOURCENAME] RESOURCEID, OVERBOOK, MODIFY_SCHEDULE, MODIFY_APPOINTMENTS, USERNAME, INTERNAL[USERNAME] USERID FROM BSDX_RESOURCE_USER"; // WHERE INTERNAL[INSTITUTION]=" + m_ConnectInfo.DUZ2; 514 514 ConnectInfo.RPMSDataTable(sCommandText, "ResourceUser", m_dsGlobal); 515 515 Debug.Write("LoadGlobalRecordsets -- ResourceUser loaded\n"); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj
r915 r966 1 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> 2 3 <PropertyGroup> 3 4 <ProjectType>Local</ProjectType> … … 33 34 <SccProvider> 34 35 </SccProvider> 35 <OldToolsVersion> 2.0</OldToolsVersion>36 <OldToolsVersion>3.5</OldToolsVersion> 36 37 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 37 <TargetFrameworkSubset>38 </TargetFrameworkSubset>39 38 <IsWebBootstrapper>false</IsWebBootstrapper> 40 39 <ManifestCertificateThumbprint>3202DD11CA9F64F7E52CF7BBED5F17D6E8A1B395</ManifestCertificateThumbprint> … … 43 42 <SignManifests>false</SignManifests> 44 43 <TargetZone>LocalIntranet</TargetZone> 44 <NoWin32Manifest>true</NoWin32Manifest> 45 45 <PublishUrl>publish\</PublishUrl> 46 46 <Install>true</Install> … … 58 58 <PublishWizardCompleted>true</PublishWizardCompleted> 59 59 <BootstrapperEnabled>true</BootstrapperEnabled> 60 < NoWin32Manifest>true</NoWin32Manifest>60 <TargetFrameworkProfile /> 61 61 </PropertyGroup> 62 62 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 63 <OutputPath>bin\ Debug\</OutputPath>63 <OutputPath>bin\Release\</OutputPath> 64 64 <AllowUnsafeBlocks>false</AllowUnsafeBlocks> 65 65 <BaseAddress>285212672</BaseAddress> … … 67 67 <ConfigurationOverrideFile> 68 68 </ConfigurationOverrideFile> 69 <DefineConstants>DEBUG</DefineConstants> 70 <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile> 69 <DefineConstants>TRACE;DEBUG</DefineConstants> 70 <DocumentationFile> 71 </DocumentationFile> 71 72 <DebugSymbols>false</DebugSymbols> 72 73 <FileAlignment>4096</FileAlignment> … … 92 93 <DefineConstants> 93 94 </DefineConstants> 94 <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile> 95 <DocumentationFile> 96 </DocumentationFile> 95 97 <DebugSymbols>false</DebugSymbols> 96 98 <FileAlignment>4096</FileAlignment> … … 405 407 <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> 406 408 <Visible>False</Visible> 407 <ProductName>.NET Framework Client Profile</ProductName>409 <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName> 408 410 <Install>false</Install> 409 411 </BootstrapperPackage> … … 430 432 </ItemGroup> 431 433 <ItemGroup> 432 <ProjectReference Include="..\..\..\BMX\bmx_0200scr\BMX2\BMXNet\BMXNet.csproj"> 434 <Folder Include="Properties\" /> 435 </ItemGroup> 436 <ItemGroup> 437 <ProjectReference Include="..\bmx\BMXNet\BMXNet.csproj"> 433 438 <Project>{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}</Project> 434 439 <Name>BMXNet</Name> 435 440 </ProjectReference> 436 </ItemGroup>437 <ItemGroup>438 <Folder Include="Properties\" />439 441 </ItemGroup> 440 442 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r913 r966 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2 3 <PropertyGroup> 3 4 <LastOpenVersion>7.10.3077</LastOpenVersion> … … 36 37 </RemoteDebugMachine> 37 38 <StartAction>Project</StartAction> 38 <StartArguments>/s=172.16.1 7.51 /p=9260 /a=shabiel12 /v=abc,123! /e=utf-8</StartArguments>39 <StartArguments>/s=172.16.19.81 /p=9235 /a=maieid1 /v=abc,123!</StartArguments> 39 40 <StartPage> 40 41 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.sln
r884 r966 1 2 Microsoft Visual Studio Solution File, Format Version 10.00 3 # Visual C# Express 2008 1 Microsoft Visual Studio Solution File, Format Version 11.00 2 # Visual C# Express 2010 4 3 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClinicalScheduling", "ClinicalScheduling.csproj", "{8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}" 5 4 EndProject 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\ ..\..\BMX\bmx_0200scr\BMX2\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}"5 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMXNet", "..\bmx\BMXNet\BMXNet.csproj", "{DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}" 7 6 EndProject 8 7 Global … … 12 11 EndGlobalSection 13 12 GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU15 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Debug|Any CPU.Build.0 = Debug|Any CPU13 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Debug|Any CPU.ActiveCfg = Release|Any CPU 14 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Debug|Any CPU.Build.0 = Release|Any CPU 16 15 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 {8C05C4F7-FE81-479F-87A0-44E04C7F6E0F}.Release|Any CPU.Build.0 = Release|Any CPU 18 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Debug|Any CPU.ActiveCfg = Release|Any CPU 17 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Debug|Any CPU.Build.0 = Release|Any CPU 20 18 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 19 {DE8E4CC9-4F3A-4E32-8DFE-EE5692E8FC45}.Release|Any CPU.Build.0 = Release|Any CPU
Note:
See TracChangeset
for help on using the changeset viewer.