Ejemplo n.º 1
0
Archivo: MainUI.cs Proyecto: Palpid/qif
        public MainUI()
        {
            InitializeComponent();
            var fileName = Path.GetDirectoryName(Application.ExecutablePath) + "\\sample.qif";

            using (StreamReader sr = new StreamReader(fileName))
            {
                qifDomPropertyGrid.SelectedObject = QifDocument.Load(sr);
            }
        }
        private QifDocument GetQif(string filePath)
        {
            QifDocument doc;

            using (var stream = File.Open(filePath, FileMode.Open))
            {
                doc = QifDocument.Load(stream);
            }
            return(doc);
        }
Ejemplo n.º 3
0
 private void importButton_Click(object sender, EventArgs e)
 {
     if (openFileDialog.ShowDialog(this) == DialogResult.OK)
     {
         string fileName = openFileDialog.FileName;
         using (StreamReader sr = new StreamReader(fileName))
         {
             qif       = QifDocument.Load(sr);
             this.Text = "QIF Inspector - " + Path.GetFileName(fileName);
         }
         PopulateTree();
     }
 }
Ejemplo n.º 4
0
Archivo: MainUI.cs Proyecto: Palpid/qif
 private void importButton_Click(object sender, EventArgs e)
 {
     if (ConfirmOverwrite())
     {
         if (openFileDialog.ShowDialog(this) == DialogResult.OK)
         {
             string fileName = openFileDialog.FileName;
             using (StreamReader sr = new StreamReader(fileName))
             {
                 qifDomPropertyGrid.SelectedObject = QifDocument.Load(sr);
             }
         }
     }
 }
Ejemplo n.º 5
0
        private void MainUI_Load(object sender, EventArgs e)
        {
            var fileName = Path.GetDirectoryName(Application.ExecutablePath) + "\\sample.qif";

            if (File.Exists(fileName))
            {
                using (StreamReader sr = new StreamReader(fileName))
                {
                    qif       = QifDocument.Load(sr);
                    this.Text = "QIF Inspector - " + Path.GetFileName(fileName);
                }
                PopulateTree();
            }
        }