Exemplo n.º 1
0
        } //end vacation report button

        //GRIDS

        //profile grids
        private void ProfileProjectGrid_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            if (profileProjectGrid.SelectedCells.Count > 0)
            {
                int             selectedRowIndex = profileProjectGrid.SelectedCells[0].RowIndex;
                DataGridViewRow selectedRow      = profileProjectGrid.Rows[selectedRowIndex];
                profilePrjNo = selectedRow.Cells[0].Value.ToString();
                profileProjectHoursBox.Text = profile.GetProjHours(profilePrjNo).ToString();
            }
        } //end profile projects grid