Deleted frmAddPatientPhyscian and replaced with new frmPatientPhysician. Updated frmPatientPhysician name and icon.

This commit is contained in:
Noah 2024-02-06 11:38:27 -05:00
parent cfa7a6ee6e
commit eca0e7efa6
4 changed files with 18 additions and 19 deletions

View File

@ -46,18 +46,18 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="frmAddPatientPhysician.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPatientPhysician.Designer.cs">
<DependentUpon>frmAddPatientPhysician.cs</DependentUpon>
</Compile>
<Compile Include="frmInfo.cs"> <Compile Include="frmInfo.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Include="frmInfo.Designer.cs"> <Compile Include="frmInfo.Designer.cs">
<DependentUpon>frmInfo.cs</DependentUpon> <DependentUpon>frmInfo.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="frmPatientPhysician.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmPatientPhysician.Designer.cs">
<DependentUpon>frmPatientPhysician.cs</DependentUpon>
</Compile>
<Compile Include="frmPrescription.cs"> <Compile Include="frmPrescription.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
@ -78,12 +78,12 @@
</Compile> </Compile>
<Compile Include="Program.cs" /> <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="frmAddPatientPhysician.resx">
<DependentUpon>frmAddPatientPhysician.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmInfo.resx"> <EmbeddedResource Include="frmInfo.resx">
<DependentUpon>frmInfo.cs</DependentUpon> <DependentUpon>frmInfo.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="frmPatientPhysician.resx">
<DependentUpon>frmPatientPhysician.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmPrescription.resx"> <EmbeddedResource Include="frmPrescription.resx">
<DependentUpon>frmPrescription.cs</DependentUpon> <DependentUpon>frmPrescription.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>

View File

@ -1,7 +1,7 @@
 
namespace Louis__Pharmacy_CNSA212_FP namespace Louis__Pharmacy_CNSA212_FP
{ {
partial class frmAddPatientPhysician partial class frmPatientPhysician
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@ -29,18 +29,17 @@ namespace Louis__Pharmacy_CNSA212_FP
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAddPatientPhysician)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPatientPhysician));
this.SuspendLayout(); this.SuspendLayout();
// //
// frmAddPatientPhysician // frmPatientPhysician
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(600, 366); this.ClientSize = new System.Drawing.Size(800, 450);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2); this.Name = "frmPatientPhysician";
this.Name = "frmAddPatientPhysician"; this.Text = "Louis\' Pharmacy - Add / Update Patient or Physician";
this.Text = "Louis\' Pharmacy - Add Patient / Physician";
this.ResumeLayout(false); this.ResumeLayout(false);
} }

View File

@ -10,9 +10,9 @@ using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP namespace Louis__Pharmacy_CNSA212_FP
{ {
public partial class frmAddPatientPhysician : Form public partial class frmPatientPhysician : Form
{ {
public frmAddPatientPhysician() public frmPatientPhysician()
{ {
InitializeComponent(); InitializeComponent();
} }