Zbiór zmian 565 dla trunk

Pokaż
Ignoruj:
Data:
2009-04-09 12:22:46 (17 years ago)
Autor:
marek
Opis:

re #160 - poprawiono blad przy prawym kliknieciu na emisje w oknie reklama - System.ArgumentOutOfRangeException?: Index was out of range.

Pliki:
1 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/BazaReklam/OrderDetails.cs

    r563 r565  
    12621262        private void ukazeSieDataGridView_CellContextMenuStripNeeded(object sender, DataGridViewCellContextMenuStripNeededEventArgs e) 
    12631263        { 
     1264            if (e.RowIndex < 0 || e.RowIndex > ukazeSieDataGridView.Rows.Count - 1) return; 
     1265 
    12641266            DataGridViewRow clickedRow = ukazeSieDataGridView.Rows[e.RowIndex]; 
    12651267