I have seen same problem many times, i have even googled a for same problem like anything.
Many people also get same problem in datagrid.
But, there is no exact solution for this question you will have to manually decide the the dimension of the panel according to use.
tableLayoutPanel1.HorizontalScroll.Enabled = false;
this will disable the horizontal scroll bar but you will have to manually adjust the dimension of the table layout panel.
Another way could be calculating the possible width of tablelayoutpanel during run time and if it greater than the value you have set then you can enable it.
tableLayoutPanel1.HorizontalScroll.Enabled = TRUE;
Regards,
sangram