A Arvin Meyer Jun 1, 2004 #2 Jeff said: Does anyone know how to set the property? thanks Click to expand... Me.txtFoo.ControlSource = variable The variable must be a field in the underlying table or query. -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
Jeff said: Does anyone know how to set the property? thanks Click to expand... Me.txtFoo.ControlSource = variable The variable must be a field in the underlying table or query. -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
A Arvin Meyer Jun 1, 2004 #4 Jeff said: Sorry .. I mean is the record source for a form. Click to expand... Easier (aircode): Sub Form_Open() Me.Recordsource = "" End Sub Put a SQL string or table or query name between the quote to change the recordsource. -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
Jeff said: Sorry .. I mean is the record source for a form. Click to expand... Easier (aircode): Sub Form_Open() Me.Recordsource = "" End Sub Put a SQL string or table or query name between the quote to change the recordsource. -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
G Guest Jun 1, 2004 #5 Thanks so much Arvin. I have been guessing what it should be for several hours. I put space between the two quotes and that's why it did not work.
Thanks so much Arvin. I have been guessing what it should be for several hours. I put space between the two quotes and that's why it did not work.