private void SellReprotUI_Load(object sender, EventArgs e)
        {


            try
            {
                CrystalReport2 objRpt = new CrystalReport2();
                objRpt.SetDataSource(atempSell);
                crystalReportViewer1.ReportSource = objRpt;
                crystalReportViewer1.Refresh();
            }
            catch (Exception exception)
            {

                MessageBox.Show(exception.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }


            
        }