BKI_DichVuMatDat.HeThong.f995_ht_phan_quyen_cho_nhom.m_cmd_left_2_right_Click C# (CSharp) Method

m_cmd_left_2_right_Click() private method

private m_cmd_left_2_right_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void m_cmd_left_2_right_Click(object sender, EventArgs e)
        {
            try
            {
                m_lbox_quyen_chua_cap.SelectedIndex = m_dc_index_in_left;
                m_lbox_quyen_da_cap.Items.Add(m_lbox_quyen_chua_cap.SelectedItem);
                m_lbox_quyen_chua_cap.Items.RemoveAt(m_lbox_quyen_chua_cap.SelectedIndex);
                m_dc_index_in_left = 0;
            }
            catch (System.Exception v_e)
            {
                CHRM_BaseMessages.MsgBox_Error(CONST_ID_MSGBOX.ERROR_DA_CAP_HET_QUYEN);
            }
        }