Search results

  1. L

    Forms Substitution Within A Loop

    Thank you ! ! ! I wanted everyone to know that my problems were resolved. Someone mentioned in one of previous posts that I should let everyone know. Obviously, I made too many posts.
  2. L

    Forms Substitution Within A Loop

    I used the EXCEL 'Transpose' featureand the code below to resolve my problems. Do Until Counter = 30 Counter = Counter + 1 varX = DLookup("Question" & Counter, "Answers_Horizontal") strAs = "A" & Counter Forms("Questions").Controls(strAs) = varX Loop
  3. L

    Forms Substitution Within A Loop

    This worked . . . Thanks ! ! !
  4. L

    Read MS Access Table Contents Into Variables

    1. Right 2. Using the EXCEL 'Transpose' feature No, . using the EXCEL 'Transpose' feature Thanks ! ! !
  5. L

    Forms Substitution Within A Loop

    I did already . . . I used the EXCEL 'Transpose' feature.
  6. L

    Forms Substitution Within A Loop

    How can I substitute "A1" in a "Forms" statement within a loop (as shown below) to move to the next textbox in a form. Dim strAs As String Dim Counter As Integer Counter = 0 Do Until Counter = 30 Counter = Counter + 1 varX = DLookup("Question" & Counter, "Answers_Horizontal") strAs =...
  7. L

    Read MS Access Table Contents Into Variables

    The EXCEL 'Transpose' feature solved my problem. Thanks to all who tried to help ! ! !
  8. L

    Read MS Access Table Contents Into Variables

    Unfortunately, I'm not aware on how to do this.
  9. L

    Read MS Access Table Contents Into Variables

    The data in the table comes from an existing EXCEL spreadsheet. I've import the data into a table, but the data is vertical. not horizontal, I'm not aware that DLookup or any function can accomplish this. I need the data to be horizontal.
  10. L

    Read MS Access Table Contents Into Variables

    All I want is to read a MS Access table with two (2) columns into variables. Once the value are in variables, I will import the values into a routine that insert the values into a form. All I need is the MS Access tables (two (2) columns) stored into variables.
  11. L

    Read MS Access Table Contents Into Variables

    Still, no records. All I want is to read a MS Access table with two (2) columns into variables.
  12. L

    Read MS Access Table Contents Into Variables

    I don't know how.
  13. L

    Read MS Access Table Contents Into Variables

    There are only two (2) columns.
  14. L

    Read MS Access Table Contents Into Variables

    I want to retrieve values in one table (column 1) and write the content into another table (horizontally). I currently do not have any workable code.
  15. L

    Read MS Access Table Contents Into Variables

    No, I want all contents from the first column saved into variables.
  16. L

    Read MS Access Table Contents Into Variables

    Thank you ! ! ! . . . but "lRecCount" returns zero records
  17. L

    Read MS Access Table Contents Into Variables

    Can someone provide me an example on VBA code that will allow me to read an existing table in MS Access (with 2 columns) and store the first column contents into variables ?
  18. L

    Variable For "Forms" Statement

    How can I make [A1] an acceptable varible that will be allowed with the below "Forms" statement ? That is make [A1] change to [A2], [A3 , [A4], [A5], [A6] . . . etc. [Forms]![Form_Questions]![A1] = varX I tried the statement below, but it did not work. Counter = 1 Do While Counter <= 25...
  19. L

    Microsoft References Needed For SendObject

    George, I'm not sure. Also, how would I set up Outlook globally (via VBA) ?
  20. L

    Microsoft References Needed For SendObject

    I figured out what is happening with my delayed e-mails. It is due to Microsoft Outlook's "Delay Delivery" option. You can locate it by opening an e-mail, click on "Options", then click on "Delay Delivery". Locate the "Delivery options" section and uncheck the "Do not deliver before" box. When I...
Back
Top Bottom