L LRib Feb 13, 2004 #1 I have a form with the default view property set to "Continuous Forms". How can i programatically fill this form?
I have a form with the default view property set to "Continuous Forms". How can i programatically fill this form?
L Lee T. Feb 13, 2004 #2 You have a blank continuous form that is not tied to a table or query? Where are you getting the information to input to the form?
You have a blank continuous form that is not tied to a table or query? Where are you getting the information to input to the form?
L LRib Feb 16, 2004 #3 The idea is to get the data from a table. -----Original Message----- You have a blank continuous form that is not tied to a table or query? Where are you getting the information to input to the form? . Click to expand...
The idea is to get the data from a table. -----Original Message----- You have a blank continuous form that is not tied to a table or query? Where are you getting the information to input to the form? . Click to expand...
G Guest Feb 16, 2004 #4 You could do it on the ON OPEN event or with a command button to pull in data. **************************************************** sqlexec = "" sqlexec = sqlexec & "SELECT * FROM [tbl_????] " sqlexec = sqlexec & " ORDER BY [????] ASC;" Me.RecordSource = sqlexec ***************************************************** hth, Lee T.
You could do it on the ON OPEN event or with a command button to pull in data. **************************************************** sqlexec = "" sqlexec = sqlexec & "SELECT * FROM [tbl_????] " sqlexec = sqlexec & " ORDER BY [????] ASC;" Me.RecordSource = sqlexec ***************************************************** hth, Lee T.