C collinm Registered User. Local time Today, 14:39 Joined Apr 20, 2006 Messages 14 Apr 25, 2006 #1 hi i display result query with: Code: CurrentDb.QueryDefs("qryTest").SQL = strQuery DoCmd.OpenQuery "qryTest", acViewPreview are there a way to set column size for every field? thanks
hi i display result query with: Code: CurrentDb.QueryDefs("qryTest").SQL = strQuery DoCmd.OpenQuery "qryTest", acViewPreview are there a way to set column size for every field? thanks
wazz Super Moderator Local time Tomorrow, 03:39 Joined Jun 29, 2004 Messages 1,704 Apr 25, 2006 #2 Me.ControlName.ColumnWidths "0cm;2cm;3cm;" something like that. you might have to fool with syntax a bit. just realized you're probably not talking about a form-control. sry, not sure if it's possible.
Me.ControlName.ColumnWidths "0cm;2cm;3cm;" something like that. you might have to fool with syntax a bit. just realized you're probably not talking about a form-control. sry, not sure if it's possible.