Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 941017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:03:02+00:00 2026-05-15T22:03:02+00:00

could anybody possibly give me some pointers as to the appropriate method to use

  • 0

could anybody possibly give me some pointers as to the appropriate method to use here.

-Edit

I have fields in a form that relate to a users ‘risk address’, and I have a checkbox that updates the values in these fields that if selected loads the ‘contact’ details (from the table tblInsPersDet) into these fields.
If the checkbox isnt selected the user can enter new details.

I run the below sub routine on celection of the checkbox. To get the field values i’m using Dlookup, but i believe this to be inefficient? As it queries the database/table each time.

Public Sub sameAsContact(frm As Form)

frm.riskAddress1 = DLookup("[add1]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskAddress2 = DLookup("[add2]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskAddress3 = DLookup("[add3]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskAddress4 = DLookup("[add4]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskAddress5 = DLookup("[add5]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.cmbRiskCountry = DLookup("[country]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskDstToProp = DLookup("[distToProp]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskInsCompany = DLookup("[insCompany]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskPolNo = DLookup("[polNo]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskBldSi = DLookup("[bldSi]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskContSi = DLookup("[contSi]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskExcess = DLookup("[excess]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskOgLinkMort = DLookup("[linkMort]", "tblInsPersDet", "[ID] =" & frm.insuredId)
frm.riskOgAddOn = DLookup("[addOn]", "tblInsPersDet", "[ID] =" & frm.insuredId)

End Sub

Is there a way to query the database once? Could anybody please give me a pointer as to a more appropriate method to get the data from the required record.

Thanks in advance for any help
Cheers
Noel

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T22:03:02+00:00Added an answer on May 15, 2026 at 10:03 pm

    You should use a subform that has insuredId as the Link Master field and ID as the Link Child field.

    EDIT re note

    I still believe you can use a subform. If the checkbox is ticked, either select the relevant record for the subform:

    Me.MySubformControlName.Form.RecordSource="Select * From tblInsPersDet Where ID=" _
     & Me.txtinsuredId 
    

    Or fill a value into a hidden or visible field called, say, txtinsuredId.

    If the checkbox is not checked, you can move to a new record in the subform.

    EDIT re note #2

    If you must use something akin to DlookUp, use a recordset:

     Set rs=CurrentDB.OpenRecordset("Select * From tblInsPersDet Where ID=" _
     & Me.txtinsuredId)
    
     For each fld in rs.Fields
        frm("txt" & fld.name)=fld
     Next
    

    or there abouts.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody please explain how this could possibly happen? I am completely aware of
Could anybody explain in plain words how Cloud computing works? I have read the
Could anybody explain what is the cause of the following: >>> from M2Crypto import
I'm a Facebook programmer newbie. Could anybody recommend good resources for starters? I believe
Does anybody know of any sample databases I could download, preferably in CSV or
Could someone tell me what the units the SetTimeout(int) method in the ICriteria interface
Is there an accepted method of adding possibly-derived objects to a collection without allowing
Could anybody tell me how it is possible in perl to go one line
Could anybody explain me following situation with Scala implicit conversions mechanism. There is a
Could someone recommend any good resources for creating Graphics User Interfaces, preferably in C/C++?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.