M
Marcello Lenci
I have a list box in wich dates are loaded by means of a SQL SELECT from a
query derived from a table.
By means of VBA I add a record to the table.
I would like to update the list box automacitally.
I tried tu put another SELECT at the end of the sub in wich I add the
record, but it doesn't run.
Can it because the new SELECT is called when the query isn't yet updated ?
My code:
Sub ......
......
with rst
..addnew
!.....
..update
end with
....RowSource= "SELECT..
end sub
What can I do ?
Thanks
Marcello Lenci
query derived from a table.
By means of VBA I add a record to the table.
I would like to update the list box automacitally.
I tried tu put another SELECT at the end of the sub in wich I add the
record, but it doesn't run.
Can it because the new SELECT is called when the query isn't yet updated ?
My code:
Sub ......
......
with rst
..addnew
!.....
..update
end with
....RowSource= "SELECT..
end sub
What can I do ?
Thanks
Marcello Lenci