Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

string grid canvas wider than columns?

Status
Not open for further replies.

BlueGhost79

Programmer
Feb 6, 2008
11
0
0
US
hi,
I set my columns to equal the width of the string grid, yet when I click on the right side of the grid, it seems to scroll or jump over, obscuring the left most columns and displaying canvas that does not have columns. there are no scroll bars either to indicate that there would be more canvas to the right. why does it do this and how do I disable it?

my setup code is:

Code:
Pairings_grid->ColWidths[0] = (Pairings_grid->Width / 5);
		Pairings_grid->ColWidths[1] = (Pairings_grid->Width / 5);
		Pairings_grid->ColWidths[2] = (Pairings_grid->Width / 5);
		Pairings_grid->ColWidths[3] = (Pairings_grid->Width / 5);
		Pairings_grid->ColWidths[4] = (Pairings_grid->Width / 5);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top