Skip to content
Snippets Groups Projects
Commit 025d7c0b authored by Jonas Gesenhues's avatar Jonas Gesenhues
Browse files

-Fixed CSV Export

-Changed CSV delimiting character to ';'
parent 861901f3
No related branches found
No related tags found
No related merge requests found
...@@ -193,6 +193,7 @@ namespace ModeliChart.Basics ...@@ -193,6 +193,7 @@ namespace ModeliChart.Basics
{ {
row[channel.Name] = GetBufferValue(doubleBuffer, channel.ValueRef); row[channel.Name] = GetBufferValue(doubleBuffer, channel.ValueRef);
} }
table.Rows.Add(row);
} }
} }
// Restart the writing Task // Restart the writing Task
......
...@@ -16,7 +16,7 @@ namespace ModeliChart.Files ...@@ -16,7 +16,7 @@ namespace ModeliChart.Files
public static void Write(string filename, DataTable data) public static void Write(string filename, DataTable data)
{ {
// Format & buffer settings // Format & buffer settings
const string DelimiterChar = ","; const string DelimiterChar = ";";
// Create the strings to write // Create the strings to write
StringBuilder stringBuilder = new StringBuilder(); StringBuilder stringBuilder = new StringBuilder();
// Description // Description
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment