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. tonyhomewood

    Catalog Users

    How do I tell who has the catalog open ? I cannot edit it when users are logged in.
  2. tonyhomewood

    Inserting Word documents as OLE objects.

    Has anyone found a solution to this problem showing only the first page ????????
  3. tonyhomewood

    97/2000 front end w/SQL back end problems

    I will have to do this shortly, the data must be in the lowest version ie 97 link the 2000/97 users to this db using linked tables NOT odbc.
  4. tonyhomewood

    How to remove spaces from inside a string

    Try this function Public Function removespaces(f As String) As String Dim i As Integer removespaces = &quot;&quot; i = 1 While i < Len(f) removespaces = removespaces & IIf(Mid(f, i, 1) = &quot; &quot;, &quot;&quot;, Mid(f, i, 1)) i = i + 1 Wend End Function
  5. tonyhomewood

    Different Printers

    I need to distribute printed reports to network printers overnight, I intend to maintain these printers names for reports in an access table BUT How do I print the report on one of these printers in code ?
  6. tonyhomewood

    Different Network Printer

    I need to distribute printed reports to network printers overnight, I intend to maintain these printers names for reports in an access table BUT How do I print the report on one of these printers in code ?

Part and Inventory Search

Back
Top