Removing Columns from Datasheet view
I have a subform (in datasheet view) that has to show/hide different columns under different contexts.
I tried
mytextbox.visible = false
where mytextbox is a textbox in the subform. This hides the textbox in Form View, but doesn't do the trick in Datasheet View.
I also tried
mytextbox.ColumnHidden = true
This method hides the column in the datasheet, but the column is still in the datasheet. So the user can bring the hidden column back by resizing the column (dragging the column header).
It there any way to truely hide/delete/remove a column from a datasheet view?? I've looked everywhere on web, but in vein.
Any help would be greatly appreciated! Thanks in advance!!!
-- kothreat@yahoo.com --

