N
Nick Mirro
I have an access 2002 db managing content contributors to a taxonomic
(biological) web site. I have an imported table containing 180,000 records,
which is used locally as a reference to the taxonomic nodes managed by the
site's db app. These records each correspond to a taxonomic node in an
evolutionary tree.
Is the table too large for Access to use?
When a contributor to the site submits a block of images (for example), I
would like to store the taxonomic node metadata (organism or group, common
or scientific name) in that persons record. That way I can look up a
contributor and see what they have submitted, and know what node on the site
it pertains to.
I tried creating a smaller table of just the common names (4000 records) and
selecting them from a combo box. I then tried to use the requery method to
preload the data (see below), which didn't work. (data wouldn't preload -
see below)
Is there a "not too advanced" way to pull a record from the large table and
add it to a contributors records. Ideally, I would like to scroll an
alphabetic list from the large table instead of performing blind searches.
Nick
(Requery combo from the parentmost form)
Public Sub Form_Current()
Me![sbfrmContactInfo].Form![ContactsList].Requery
[Forms]![frmDataExchange]![sbfrmContactInfo].[Form]![SbfrmContactReason].[Fo
rm]![cmbAllReasons].Requery
[Forms]![frmDataExchange]![sbfrmContactInfo].[Form]![SbfrmContactReason].[Fo
rm]![cmbTaxa].[Form]![frmImageData].[Form]![cmbTaxa].Requery
End Sub
(From the form with the combo)
Private Sub Form_Open(Cancel As Integer)
Me.cmbTaxa.Requery
End Sub
(biological) web site. I have an imported table containing 180,000 records,
which is used locally as a reference to the taxonomic nodes managed by the
site's db app. These records each correspond to a taxonomic node in an
evolutionary tree.
Is the table too large for Access to use?
When a contributor to the site submits a block of images (for example), I
would like to store the taxonomic node metadata (organism or group, common
or scientific name) in that persons record. That way I can look up a
contributor and see what they have submitted, and know what node on the site
it pertains to.
I tried creating a smaller table of just the common names (4000 records) and
selecting them from a combo box. I then tried to use the requery method to
preload the data (see below), which didn't work. (data wouldn't preload -
see below)
Is there a "not too advanced" way to pull a record from the large table and
add it to a contributors records. Ideally, I would like to scroll an
alphabetic list from the large table instead of performing blind searches.
Nick
(Requery combo from the parentmost form)
Public Sub Form_Current()
Me![sbfrmContactInfo].Form![ContactsList].Requery
[Forms]![frmDataExchange]![sbfrmContactInfo].[Form]![SbfrmContactReason].[Fo
rm]![cmbAllReasons].Requery
[Forms]![frmDataExchange]![sbfrmContactInfo].[Form]![SbfrmContactReason].[Fo
rm]![cmbTaxa].[Form]![frmImageData].[Form]![cmbTaxa].Requery
End Sub
(From the form with the combo)
Private Sub Form_Open(Cancel As Integer)
Me.cmbTaxa.Requery
End Sub