Dear reader,
You can close a column (makes a column invisible) in a sub form with the
following VBA code:
SubFormName.For m!FieldName.Col umnWidth = 0
If column is closed and it is necessary to open the column again you expect
the following VBA code will do that:
SubFormName.For m!FieldName.Col umnWidth = 10
But this code gives not an error message and neither has it opened the
column.
Is there a code available which open the column in a sub form after it is
closed by the first code line?
Thanks for any help.
Regards,
Simon
You can close a column (makes a column invisible) in a sub form with the
following VBA code:
SubFormName.For m!FieldName.Col umnWidth = 0
If column is closed and it is necessary to open the column again you expect
the following VBA code will do that:
SubFormName.For m!FieldName.Col umnWidth = 10
But this code gives not an error message and neither has it opened the
column.
Is there a code available which open the column in a sub form after it is
closed by the first code line?
Thanks for any help.
Regards,
Simon
Comment