Search results

  1. G

    Copy entire record between recordsets

    Is there a way to copy an entire record from one recordset to another? I currently loop thru all the fields and it seems inefficient. I would like to do something like: rs.fields = rt.fields instead of: while intCounter < rs.fields.count rs.fields(intCounter) = rt.fields(intCounter)...
  2. G

    How do I call a subroutine on another form?

    My users create/edit records with several types of related data for example Points of Contact (POC) so the edit screen has a button that calls a dialog box that allows them to add one or more POCs to the record. What I would like to do is when they click the close button in the dialog box it...
  3. G

    Use Outlook Address Book to get POC data

    I have a hard enough time getting people to enter the required data. I hate to make them enter stuff that already exists in Outlook (and then keep it up to data in two places) I experimented with a link to the Outlook Global Address List but it seems slow and I guess I would need to code a form...
  4. G

    Can a recordset be shared between two forms?

    I think I could solve my problem if I could figure out how to share a recordset between two forms (access and manipulate one recordset from two forms) but I will explain what I am trying to do because it is entirely possible that there is a better solution. I have a table (funding) with 16...
Back
Top Bottom