V vmon Registered User. Local time Today, 13:58 Joined Jan 21, 2003 Messages 49 Mar 21, 2007 #1 Is there are command or snipit of code someone could share to unhide all columns in a datasheet subform when a form is opened? Thanks, vmon
Is there are command or snipit of code someone could share to unhide all columns in a datasheet subform when a form is opened? Thanks, vmon
D dcobau Registered User. Local time Today, 22:58 Joined Mar 1, 2004 Messages 124 Mar 21, 2007 #2 why do you want to hide them in the first place?
boblarson Smeghead Local time Today, 05:58 Joined Jan 12, 2001 Messages 32,059 Mar 21, 2007 #3 DoCmd.RunCommand acCmdUnhideColumns
Snowflake68 Registered User. Local time Today, 13:58 Joined May 28, 2014 Messages 464 Jun 6, 2015 #4 This code pops up the Unhide popup window. DoCmd.RunCommand acCmdUnhideColumns BUT can someone tell me what code just sets all columns to visible as I dont want the pop up.
This code pops up the Unhide popup window. DoCmd.RunCommand acCmdUnhideColumns BUT can someone tell me what code just sets all columns to visible as I dont want the pop up.
J JHB Have been here a while Local time Today, 14:58 Joined Jun 17, 2012 Messages 7,732 Jun 7, 2015 #5 The link shows how to hide a column, you can use the same code to unhide a column by setting the Properties("ColumnHidden") = False. https://msdn.microsoft.com/en-us/li...v=office.11).aspx?f=255&MSPPError=-2147217396
The link shows how to hide a column, you can use the same code to unhide a column by setting the Properties("ColumnHidden") = False. https://msdn.microsoft.com/en-us/li...v=office.11).aspx?f=255&MSPPError=-2147217396