Exemple #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     openFileDialog1.ShowDialog();
     THH.Tools.OFX.OfxDocument document = new THH.Tools.OFX.OfxDocument(new FileStream(openFileDialog1.FileName, FileMode.Open));
     textBox1.Text += "Ofxheader: " + document.OfxHeader + Environment.NewLine;
     textBox1.Text += "data: " + document.Data + Environment.NewLine;
     foreach (THH.Tools.OFX.Transaction trans in document.Transactions)
     {
         textBox1.Text += trans.Name + Environment.NewLine;
     }
 }
Exemple #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     openFileDialog1.ShowDialog();
     THH.Tools.OFX.OfxDocument document = new THH.Tools.OFX.OfxDocument(new FileStream(openFileDialog1.FileName, FileMode.Open));
     textBox1.Text += "Ofxheader: " + document.OfxHeader + Environment.NewLine;
     textBox1.Text += "data: " + document.Data + Environment.NewLine;
     foreach (THH.Tools.OFX.Transaction trans in document.Transactions)
     {
         textBox1.Text += trans.Name + Environment.NewLine;
     }
 }