private void btnMovement_Click(object sender, RoutedEventArgs e)
        {

            if (string.IsNullOrEmpty(StartDate) || string.IsNullOrEmpty(EndDate))
            {
                BMC.Presentation.CashDeskManager.MessageBox.showBox("Not a valid Date Range");
                return;
            }
            if (File.Exists(System.Windows.Forms.Application.StartupPath + "\\CashdeskReports.exe"))
            {
                Process proc = new System.Diagnostics.Process();
                proc.EnableRaisingEvents = false;
                proc.StartInfo.FileName = "CashdeskReports.exe";
                busTreasury = new TreasuryTransactions();
                if (busTreasury.GetRegionFromSite().Equals("US"))
                {
                    proc.StartInfo.Arguments = "/TYPE=CDRESULTUS /STARTDATE=" + StartDate + " " + StartTime + " /ENDDATE=" + EndDate + " " + EndTime;
                }
                else if (busTreasury.GetRegionFromSite().Equals("UK"))
                {
                    proc.StartInfo.Arguments = "/TYPE=CDRESULT /STARTDATE=" + StartDate + " " + StartTime + " /ENDDATE=" + EndDate + " " + EndTime;
                }
                proc.Start();
            }
            else
            {
                BMC.Presentation.CashDeskManager.MessageBox.showBox("Missing cashdeskreport module");
            }
        }