Esempio n. 1
0
 private void decodeSelectedToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         GridViewImages.EndEdit();
         var         indexes      = imageOperations.BindableFileContainer.Where(Q => Q.saveFile == true).Select(R => R.Index).ToList();
         var         container    = imageOperations.ImageFilesContainer.Where(Q => indexes.Contains(Q.Index)).ToList();
         ImageFileIO DecodeToDisk = new ImageFileIO();
         DecodeToDisk.Decode(container, Properties.Settings.Default.EncodedFolder);
         MessageBox.Show("Decoding all Images Complete");
     }
     catch
     {
         MessageBox.Show("An error ocurred writting to disk");
     }
 }
Esempio n. 2
0
        protected void lnkDetails_Click(object sender, EventArgs e)
        {
            PanelNotes.Visible = true;
            GridViewRow SelectedRow = (GridViewRow)((LinkButton)sender).NamingContainer;
            // get textual notes
            Supplier_Payment_Record record = new Supplier_Payment_Record();
            // for valid format in convertion to double
            int    Startindex = SelectedRow.Cells[3].Text.IndexOf("مدفوعه");
            string value      = SelectedRow.Cells[3].Text.Remove(Startindex, 16);

            record.Paid_amount = SelectedRow.BackColor == System.Drawing.Color.LightGray ? -Convert.ToDouble(value) : Convert.ToDouble(value);
            record.Pay_Date    = Convert.ToDateTime(SelectedRow.Cells[0].Text);
            string s_name = ViewState["S_Name"].ToString();

            TxtNotes.Text = record.Get_Supplier_Notes(s_name);
            // get attachments
            GridViewImages.DataSource = Supplier_Payments_Documents.Get_Images(s_name, record.Pay_Date);
            GridViewImages.DataBind();
            // to successfully compute the debts in the footer row
            Get_Records(s_name);//Bind supplier records grid ;
            SetFocus(GridViewImages);
        }