Search results

  1. ajvol01

    PassThrough Query to AS400

    In the pass through query the ODBC Connect Str property needs to be set like below ODBC;DSN=MyDSN;UID=MyUserID;PWD=MyPassword;
  2. ajvol01

    variable output macro

    Not sure if this is possible by using a Macro. It can easily be done by using a VBA procedure. Sub ExportExcel() ' "Range" is a named Range defined in a worksheet of the Excel workbook DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "Table", "File", True, "Range" End Sub
  3. ajvol01

    RFID to read in Access 2010

    How is the RFID data being passed to the PC? I.E. like a barcode scanner (keyboard emulation)? If yes, then the RFID data should be scanned into a textbox on a form.
  4. ajvol01

    CDO Message

    EDIT: Sorry bad info in my original reply. If using VBA you do not need to make a reference to use CDO. If using VB6 or VB .NET you will need to refer to Microsoft CDO for Windows 2000 Library On Windows 7 this is C:\Windows\SysWOW64\cdosys.dll
  5. ajvol01

    Do While Loop Macro for Query Design

    Take a look at the attached db and code and let me know if this works ok. Function LoadExpenditures() Dim db As DAO.Database Dim rs As DAO.Recordset Dim strTable1 As String Dim strTable2 As String Dim intExpNo As Integer Dim strExpNo As String Dim strItem As String Dim lngExpYear, lngLifeExp...
  6. ajvol01

    Automate the transfer of multiple excel files to One Access Table

    Hi Clifton. I think one thing you may need to do in the Excel files is to define a named range for the rows and columns you will be importing data from. The named range can then be used to import data from Excel to Access see sample code below for importing data from a spreadsheet Sub...
  7. ajvol01

    Hi everyone

    Thanks Aleni - looking forward to it!
  8. ajvol01

    Hi everyone

    My name is Andy and I'm a new member here - I've been a frequent visitor to this and a few other Access sites for over 10 years. I work as an engineer in Tennessee and have used Access to help me analyze data and for reports. More recently I have been using Access to automate time consuming...
Back
Top Bottom