Search results

  1. K

    display progress msg on screen

    I want to display the message "Processing Record ? of ???..." on the screen while my vba code is running without interruption. Since the msgbox requires the user to click a button to continue, what is the simplest way to display this message on the screen without interrupting the program or...
  2. K

    calling subroutine from VBA routine

    I am trying to call a subroutine from a VBA routine to append a record to an existing table. Below is the code for opening my recordsets for reading followed by the code creating my table to append to: Public Sub UpdateLotsizes() Dim curDatabase As DAO.Database Dim ProdPlanDB As...
  3. K

    finding specific record in a linked table

    From what I have read, I understand you can't use the seek command on a recordset from a linked table from another database. Is that true? If so, what is the alternative to find a specific record in the table using an indexed field?
  4. K

    trying to use query in recordset

    I'm trying to use a query in a recordset and I'm getting errors. The query was created in Access using a SQL table. The query and table are in my current database. I get runtime error 3061 (expected 3 parameters) at line in red. Public Sub UpdateLotsizes() Dim curDatabase As Object...
  5. K

    New to the forum

    Hi Everyone! I am from Texas and I'm new to the forum. I have experience in Access and experience in programming, but I am new to VBA programming in Access and I'm having trouble with some of the syntax details. I appreciate y'all's patience with some of the dumb questions I may ask.
Back
Top Bottom