This method will tell you where on the split window this view is located (row and column).
void CMySplitterView::GetRowCol(int &row, int & col) { CSplitterWnd * parent; parent = (CSplitterWnd*)GetParent(); int rows; int cols; rows = parent->GetRowCount(); cols = parent->GetColumnCount(); for(row = 0; row < rows; row++) { for(col = 0; col < cols; col++) { if(this == parent->GetPane(row,col)) { return; } } } ASSERT(TRUE == FALSE); }