Skip to content

Commit

Permalink
Fixed 'Sensor 10' header text having three spaces; Anchored Post Proc…
Browse files Browse the repository at this point in the history
…essing buttons; Fixed Post Processing closing actions (moved to dedicated handler)
  • Loading branch information
joh06937 committed Apr 21, 2013
1 parent 75bec80 commit a3df6ae
Show file tree
Hide file tree
Showing 13 changed files with 336 additions and 328 deletions.
Binary file modified Spintronics/Spintronics.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion Spintronics/Spintronics/GUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ private void createRunFiles()
{
if (i == 15)
continue;
if (i < 10)
if (i < 9)
{
dataFile1.Write("Sensor " + (i + 1) + "\t");
dataFile2.Write("Sensor " + (i + 1) + "\t");
Expand Down
651 changes: 327 additions & 324 deletions Spintronics/Spintronics/PostProcessingResults.Designer.cs

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion Spintronics/Spintronics/PostProcessingResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private void appendAndSaveButton_Click(object sender, EventArgs e)
{
if (i == 15)
continue;
if(i < 10)
if(i < 9)
postProcessingFile.Write("Sensor " + (i + 1) + "\t");
else
postProcessingFile.Write("Sensor " + (i + 1) + "\t");
Expand Down Expand Up @@ -200,6 +200,11 @@ private void appendAndSaveButton_Click(object sender, EventArgs e)
}

private void closeButton_Click(object sender, EventArgs e)
{
this.Close();
}

private void PostProcessingResults_FormClosed(object sender, EventArgs e)
{
if (!hasSaved)
{
Expand Down
Binary file modified Spintronics/Spintronics/bin/Debug/Spintronics.exe
Binary file not shown.
Binary file modified Spintronics/Spintronics/bin/Debug/Spintronics.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions Spintronics/Spintronics/bin/Debug/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ CoilFrequency:50
CoilDcOffset:0
CoilDcOffsetUnit:V
MeasurementPeriod:1
SampleAverageCount:2
DiffusionCount:2
SampleAverageCount:10
DiffusionCount:10
PostProcessingFiles:2
Binary file modified Spintronics/Spintronics/bin/Release/Spintronics.exe
Binary file not shown.
Binary file modified Spintronics/Spintronics/bin/Release/Spintronics.pdb
Binary file not shown.
Binary file modified Spintronics/Spintronics/obj/x86/Debug/Spintronics.exe
Binary file not shown.
Binary file modified Spintronics/Spintronics/obj/x86/Debug/Spintronics.pdb
Binary file not shown.
Binary file modified Spintronics/Spintronics/obj/x86/Release/Spintronics.exe
Binary file not shown.
Binary file modified Spintronics/Spintronics/obj/x86/Release/Spintronics.pdb
Binary file not shown.

0 comments on commit a3df6ae

Please sign in to comment.