Continuous Forms

  • Thread starter Thread starter LRib
  • Start date Start date
L

LRib

I have a form with the default view property set
to "Continuous Forms". How can i programatically fill this
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?
 
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?

.
 
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.
 
Back
Top