private void ViewButton_Click(object sender, EventArgs e)
        {
            if (frepForm == null || frepForm.IsDisposed)
            {
                frepForm = new FastReportForm();
            }

            frepForm.Show();
            frepForm.Activate();
        }
        public FastRepMainForm()
        {
            InitializeComponent();

            actionreport = new FF14LogParser();
            frepForm = new FastReportForm();
            rf = new RankingForm();

            bindingSource2.DataSource = actionreport.ds;
        }