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 Mike Lewis 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: ti976
  • Order by date
  1. ti976

    Replace pages or Delete and Insert pages in PDF via VB

    GetNumPages counts pages from 1, while pdDoc counts from 0, therefore use GetNumPages -1 Similar concept with replacepages call. FYI use the pddoc object from the source insertion pdf in replace pages call.
  2. ti976

    Can't see table when using remote module control

    Just a thought, but if you are calling the refreshDataRemote() from database B, the DLookUp call could be trying to find the tblLST_Reports table in database B and not in A. This assumption is true if you don't have tblLST_Reports in database B. If this is the case, add a link as PHV suggest to...
  3. ti976

    Multi User Access Database

    Good article. More detailed and elegant than what I wrote. Let me see if I can break it down. starting assumptions: 1. you have a server or a machine that serves as a centralized file repository - I'll just call a 'server'. 2. other pc's that are connected to the server. 3. every one has the...
  4. ti976

    Multi User Access Database

    My background: AC97 app developer - important since AC97 is different enough from newer versions (like DAO vs ADO) where what I say may not apply. 1. Yes,yes; if you make a FE typically you install it locally on the user. You can make just one FE that every one can use but unless there are...
  5. ti976

    Output filter datasheet form data to Excel

    have you consider using docmd.transferspreadsheet which can accept select query statements. the select query statements you can 'build' using exisiting form property values. DoCmd.TransferSpreadsheet [transfertype][, spreadsheettype], tablename, filename[, hasfieldnames][, range] ex...

Part and Inventory Search

Back
Top