Recent content by aTmchick

  1. A

    Browse for File in Run-Time Is Not Working

    ghudson, Thanks for your help with the situation. It ended up being a references issue. I appreciate your help (and your code). :o
  2. A

    Browse for File in Run-Time Is Not Working

    I might also note that I run Windows XP on my developing computer, but the OS on the run-time computer is Windows 2000 Professional.
  3. A

    Browse for File in Run-Time Is Not Working

    First, thanks for trying to help me out, I really appreciate you taking an interest. The database was written on Access 2003 in Access 2000 format, because the run-time version I would like the database to run on is Access 2000. I am attemping totest the database on a computer without the full...
  4. A

    Browse for File in Run-Time Is Not Working

    Also, the error does not give a code, just says execution has been stopped and the application will be shut down.
  5. A

    Browse for File in Run-Time Is Not Working

    Private Sub browsebene_Click() On Error GoTo Err_browsebene_Click Dim strFilter As String Dim lngFlags As Long Dim varFileName As Variant Me.SetFocus ' strFilter = "Access (*.mdb)" & vbNullChar & "*.mdb" _ ' & vbNullChar & "All Files (*.*)" & vbNullChar & "*.*" '...
  6. A

    Variable File Path for Mail Merge

    Hi, I currently have VB code that forces a mail merge from Access to Word. I want to modify the code so that a user can browse and select the path for the Access Database (source) and the Word Template. When I have tried to make the file path for the database a variable, it has produced a...
  7. A

    Browse for File in Run-Time Is Not Working

    I have a database in which users click to browse for a file, and then import it to start off with. I am trying to convert this database to run on the run-time version of Access, and it is getting caught up with this first action. My Start Form has the "Browse" button on it, but when I click...
  8. A

    Perform same queries on different tables

    I'm working on this for a friend, so let me even see if I know enough to explain this. I need to perform the same queries on any table that is imported into the db. The queries pretty much compare the data in the table to data that was in the table yesterday and gives a list of what is...
  9. A

    importing xls in access

    This db posted by ghudson shows how to browse and import files on screen. Worked for me after I figured out how to program in VBA. Phew! http://www.access-programmers.co.uk/forums/showthread.php?t=75790
Back
Top Bottom