private void generateTXTFileToolStripMenuItem_Click(object sender, EventArgs e) { // Going to need to present the user with a File Dialog and // then interate through the Grid, outputting columns that // are visible. saveFileDialogTxt.AddExtension = true; saveFileDialogTxt.Title = "Save Output to TXT"; saveFileDialogTxt.Filter = "TXT Files|*.txt"; saveFileDialogTxt.FileName = "rngreporter.txt"; if (saveFileDialogTxt.ShowDialog() == DialogResult.OK) { // Get the name of the file and then go ahead // and create and save the thing to the hard // drive. var adjacents = (List <Adjacent>)dataGridViewAdjacents.DataSource; if (adjacents.Count > 0) { var writer = new TXTWriter(dataGridViewAdjacents); writer.Generate(saveFileDialogTxt.FileName, adjacents); } } }
private void outputResultsToTXTToolStripMenuItem_Click(object sender, EventArgs e) { saveFileDialogTxt.AddExtension = true; saveFileDialogTxt.Title = "Save Output to TXT"; saveFileDialogTxt.Filter = "TXT Files|*.txt"; saveFileDialogTxt.FileName = "rngreporter.txt"; if (saveFileDialogTxt.ShowDialog() == DialogResult.OK) { // Get the name of the file and then go ahead // and create and save the thing to the hard // drive. var frames = (List <FrameResearch>)dataGridViewValues.DataSource; if (frames.Count > 0) { var writer = new TXTWriter(dataGridViewValues); writer.Generate(saveFileDialogTxt.FileName, frames); } } }
private void outputCapResultsToTXTToolStripMenuItem_Click(object sender, EventArgs e) { // Going to need to present the user with a File Dialog and // then interate through the Grid, outputting columns that // are visible. saveFileDialogTxt.AddExtension = true; saveFileDialogTxt.Title = "Save Output to TXT"; saveFileDialogTxt.Filter = "TXT Files|*.txt"; saveFileDialogTxt.FileName = "rngreporter.txt"; if (saveFileDialogTxt.ShowDialog() == DialogResult.OK) { // Get the name of the file and then go ahead // and create and save the thing to the hard // drive. List <IFrameCapture> frames = iframes; if (frames.Count > 0) { var writer = new TXTWriter(dataGridViewCapValues); writer.Generate(saveFileDialogTxt.FileName, frames); } } }