Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added beginning of CSV work.
  • Loading branch information
ejr06006 committed Apr 17, 2012
1 parent 16ee938 commit 49515ad
Show file tree
Hide file tree
Showing 5 changed files with 2,060 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DataScraperGUI/DataScraperGUI.csproj
Expand Up @@ -16,7 +16,7 @@
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<PublishUrl>G:\SeniorDesign\builds\</PublishUrl>
<Install>false</Install>
<InstallFrom>Unc</InstallFrom>
<UpdateEnabled>true</UpdateEnabled>
Expand All @@ -31,7 +31,7 @@
<ProductName>DataScraper</ProductName>
<PublisherName>UConn ECE Senior Design - Group 155</PublisherName>
<WebPage>Publish.htm</WebPage>
<ApplicationRevision>1</ApplicationRevision>
<ApplicationRevision>2</ApplicationRevision>
<ApplicationVersion>0.1.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
14 changes: 13 additions & 1 deletion DataScraperGUI/Programs/NormalProgram.cs
Expand Up @@ -7,12 +7,24 @@ using DataScraperGUI.Infrastructure;

namespace DataScraperGUI.Programs {
public class NormalProgram : Program {
// Constants
public const string OutputFilename = @"~/csv/normal_program.csv";
private StringBuilder sb;

public NormalProgram (Logger l, ProgressBar p) : base(l, p) { }


public override void Execute() {
// Setup Simulation
sb = new StringBuilder();

GenerateHeader(); // Write the CSV header

logger.LogError("This program has not yet been implemented.");
progressBar.Value = 100;
}

private void GenerateHeader () {

}
}
}

0 comments on commit 49515ad

Please sign in to comment.