Continuous Forms

L

LRib

I have a form with the default view property set
to "Continuous Forms". How can i programatically fill this
form?
 
L

Lee T.

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

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?

.
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top