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 wOOdy-Soft 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: *

  • Users: rgbanse
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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
  4. 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...
  5. 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...
  6. 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...
  7. 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
  8. 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
  9. 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
  10. rgbanse

    .Addnew with wildcard

    Is it possible to append all fields from a recordset into a table using this type of code or something similar .Addnew RcdSt1.Fields! = (RcdSt2!*) .Update thx RGB
  11. rgbanse

    Recordset.Fields("FieldName")

    I've used this type of code to determint the value for that field in that record. What will tell me the Ordinal position of that field within that record. I know I've seen it before but can't bust the code. Thx RGB
  12. rgbanse

    Sort order has changed

    After converting from 97 to 2003, the sort order has changed. It appears that Access doesn't see any " ' " in names. It sorts by the character following the " ' ". Any thoughts. Thx RGB
  13. rgbanse

    Reports with 'No Data'

    I'm using DoCmd.OpenReport... with the necessary criteria and conditions - opens fine. At this point, is there a way to test the report for a 'No Data' state using VBA. I've tried creating a constant and usnig the 'On No Data' function within the report to pass a value to the variable with out...
  14. rgbanse

    Subdatasheet global setting

    is there a global setting or code to set Subdatasheet to NONE by default thx RGB
  15. rgbanse

    XP Home Edition Networked

    Can a laptop with XP Home Edition be networked on an XP Pro networkk thx RGB
  16. rgbanse

    Recordset as Form Source

    I have created a multi-record recordset using vba. How can I use it as a source in a 'Continuous Forms' form to show all records. thx RGB
  17. rgbanse

    Version Of Access

    I'm using Application.filesearch to read thru a folder. Is there a way to determine the Access Version of the databases in the folder? thx RGB
  18. rgbanse

    Version of Access

    I'm using Application.filesearch to read thru a folder. Is there a way to determine the Access Version of the databases in the folder? thx RGB
  19. rgbanse

    Access 2003 - Code to turn OFF Db compress

    Reports run from a given Db throughout the day. Rather than compress every time, is there code to compress only when criteria is met. thx RGB
  20. rgbanse

    Add References using VBA

    Is the a way to add references (ie; Microsoft Scripting Runtime) to a Database using VBA. thx RGB

Part and Inventory Search

Back
Top