+
+ // determine if we need a horizontal scrollbar, and add it if so
+ if (m_dbImpl)
+ {
+ int totalWidth = 0;
+ for (int column = 0; column < GetColumnCount(); column++)
+ {
+ totalWidth += m_dbImpl->GetColumnWidth( column );
+ }
+
+ Boolean vertScrollBar;
+ GetDataBrowserHasScrollBars( m_dbImpl->GetControlRef(), NULL, &vertScrollBar );
+ if (totalWidth > width)
+ SetDataBrowserHasScrollBars( m_dbImpl->GetControlRef(), true, vertScrollBar );
+ else
+ SetDataBrowserHasScrollBars( m_dbImpl->GetControlRef(), false, vertScrollBar );
+ }