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 SkipVought 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. grogery

    Query a Query

    Create a new query, UNION the fields together that you require and then create yet another query to sum the results of the UNION query. GOod Luck!
  2. grogery

    Build a URL from the info. on a form, can you help

    You have to make use of references, in this case the Microsoft Internet Controls REFERENCE. Once that has been done its a matter of declaring the correct objects. Sub ShowTekTips() Dim IE As InternetExplorer Set IE = New InternetExplorer IE.Visible = True IE.Navigate...
  3. grogery

    optimisation for dif screen resolution

    Try this brother... http://www.mvps.org/access/general/gen0002.htm B-)
  4. grogery

    Please help with cannot find linked table problem

    1. Make sure that the fields you are joining your tables on are of the same data type. 2. Have you tried using a Passthrough query? This is probably much faster than joining the Access tables.
  5. grogery

    Automatic version update..?

    Firstly you need to link your SQL server database to the access DB. eg call it SQLversion. If you already have a table called Version - all you need to do is run a query that updates the number: UPDATE SQLversion SQL_V, Version V SET V.Version = [SQL_V].[Version] WHERE V.Version <...
  6. grogery

    Modifying a secured DB table from another database

    How do you set a DB variable to an open Database that has its own workgroup file without getting any errors? For example: If 'C:\Temp\Temp.mdb' is a secured DB and has its own workgroup file called 'C:\Temp\WKS_Temp.mdw' - is it possible to maybe pass the Workgroup filename with a username...
  7. grogery

    Delelte File if it exists

    How about something shorter and sweeter... If Len(Dir(strFilename)) <> 0 Then Kill strFilename End If

Part and Inventory Search

Back
Top