Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
20524 | Oct 20,2004 01:05 PM UTC | Oct 21,2004 10:05 AM UTC | WinForms | 7 |
![]() |
Tags: GridControl |
bool bCol = (rowIndex <= 0 && colIndex > nhCol);
bool bRow = (colIndex <= 0 && rowIndex > nhRow);
bool bCell = (rowIndex > nhRow && colIndex > nhCol);
bool bTable = (colIndex == 0 && rowIndex == 0);
to
bool bCol = (rowIndex <= nhRow && colIndex > nhCol);
bool bRow = (colIndex <= nhCol && rowIndex > nhRow);
bool bCell = (rowIndex > nhRow && colIndex > nhCol);
bool bTable = (colIndex == 0 && rowIndex == 0);
the controller will treat all headers the same.
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.