Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rgbanse

    Joining Recordsets

    RcdSt01SqlString = SELECT dmacs_item.im_division, dmacs_item.im_site, dmacs_item.im_item_nbr, dmacs_item.im_int_desc FROM dmacs_item; when used with Set Rcdst01 = ThisDatabase.OpenRecordset(RcdSt01SqlString, dbOpenDynaset), it creates a dynamic record set
  2. rgbanse

    Joining Recordsets

    SQL strings used to create the recordsets
  3. rgbanse

    Joining Recordsets

    I've created 2 recordsets Set Rcdst01 = ThisDatabase.OpenRecordset(RcdSt01SqlString, dbOpenDynaset) Set RcdSt02 = ThisDatabase.OpenRecordset(RcdST02SqlString, dbOpenDynaset) I would like to create a 3rd recordsset joining the first 2. The resulting recordset would contain Fields 1,2,3 from...
  4. rgbanse

    Macro Automation & ODBC Driver Connect

    This is what I use In your macro use RunCode - Establish_Connection() Public Function Establish_Connection() Dim db As Database Dim dbcurr As Database Dim ds As Recordset Set dbcurr = CurrentDb() 'Logs on to Your Database Set db = OpenDatabase("", dbDriverComplete, False...
  5. rgbanse

    Run Time Error 3001 Invalid Argument

    check the size of the database - may be max'd - empty work tables and compress or set compress on close option
  6. rgbanse

    Compact .mdb not being deleted

    Defrag made no diff These are databases that are started by scheduling software. They run a macro that runs reports, then closes db. These db's are all set to compact on close. The original db is still intact, but did not compress.
  7. rgbanse

    Compact .mdb not being deleted

    db's are realatively small - not even close to max started defragging - will let you know if there is improvement thx RGB
  8. rgbanse

    Compact .mdb not being deleted

    this is a recent 'happening' any idea what might have changed to cause this thx RGB
  9. rgbanse

    Compact .mdb not being deleted

    Recently, and randomly, the Db#.mdb files are not being deleted. I am at a total loss. Any thoughts? thx RGB
  10. rgbanse

    Turn Transmit off

    Scanning a 2d barcode post to fields properly but also transmits - How do I turn off the transmit? Symbol - MC3090 thx RGB
  11. rgbanse

    Command line options

    I'm running a mass update of all of our databases using the following - Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1) works fine except for those databases with an autoexec macro or a startup form. is there an...
  12. rgbanse

    Command line options

    I'm running a mass update of all of our databases using the following - Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1) works fine except for those databases with an autoexec macro or a startup form. is there an...
  13. rgbanse

    Command line options

    I'm running a mass update of all of our databases using the following - Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1) works fine except for those databases with an autoexec macro or a startup form. is there an...
  14. rgbanse

    Fit to Page

    I'm using to following commmand line to print PDF files. Shell "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe /p /f" & XsomeFile, vbHide When printed they're only filling half of the page. What is the command line setting to 'Fit to Page. thx RGB
  15. rgbanse

    Access Session Count

    Geez - has it been that long - answer is exactly what I was looking for. thx and a star RGB
  16. rgbanse

    Access Session Count

    this appears to be looking at the ldb file and would give me the number of users in a specific data base. I'm trying to find how many sessions of msaccess.exe are running on a give pc. I need to limit that number. Follows some code I use to limit to one seccession but I want to allow, say, 5 max...
  17. rgbanse

    Access Session Count

    having trouble with Declare Function LDBUser_GetUsers Lib "MSLDBUSR.DLL" _ (lpszUserBuffer() As String, ByVal lpszFilename As String, _ ByVal nOptions As Long) As Integer Compile Error: Only comments may appear End Sub, End Function or End Property
  18. rgbanse

    Access Session Count

    I need to restrict the number of access sessions on a group of scheduling machines. I can determine if at lease one session is running but not how many are running I need a way to determine the count. thx RGB
  19. rgbanse

    Application.FileSearch

    I'm using Application.FileSearch to find all mdb's stored on a series of hard drives. No problme here but also need to know what version of access each db is. We have 97 thru current. thx RGB
  20. rgbanse

    .Addnew with wildcard

    Worked great !!! Thx - Star to ya RGB

Part and Inventory Search

Back
Top