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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JoeEskimo

  1. JoeEskimo

    Auto fill text box

    Try using the ON CHANGE instead of AFTER UPDATE
  2. JoeEskimo

    Suppress Field and Display the Next

    1. All yes no items should be tied to a query that produces yes (not no) 2. Take the query defined above and design a report listing the items vertically 3. Make the report a sub report of your main report and it will always show ony the yes answers reguardless if they are different for each record.
  3. JoeEskimo

    Query result in Report

    If the result is in the query as you stated, then you will be able to add it to a report, unless your report is not tied to the query. Do you know what your report's control source is?
  4. JoeEskimo

    The same query brings different rezult when run from SQL Server and Ac

    There is a setting on the SQL server for how long it waits before it times out. You can test this by running a short query that produces a small amount of results from Access. If you get the same results in SQL as well then expand the query to grab more records or make the query more complex...
  5. JoeEskimo

    Splitting a Field

    If you use the menu File, Get External Data, Import and tell it the import file is Delimited, then you can also tell it that it is delimited by "\" and the result of the imported file will be what you want. You can create a macro of the above description in case you need to import this file on...
  6. JoeEskimo

    how to create email and attach file that is stored in database field

    Use the Send Object: DoCmd.SendObject acSendTable, "Employees", acFormatXLS, _ "Nancy Davolio; Andrew Fuller", "Joan Weber", , _ "Current Spreadsheet of Employees", , False
  7. JoeEskimo

    Add record to combo box

    It sounds like you need to have your combo box control source be a query that lists all of the tickets.
  8. JoeEskimo

    saving acces options selections ....

    Actions should not be turned off through options because then they are permanently off for all access apps. What should be done is they should be truned off during the running of the query and then turned back on after the query is run. To accomplish this, build a Macro and tell it to Set...
  9. JoeEskimo

    link to named range

    I would go with the transfer spreadsheet (all of sheet) followed by a "make a table query" that chooses the correct columns.
  10. JoeEskimo

    Database on server, error on shared forms, Path?

    Yes, From the Front End, use FILE, GET EXTERNAL DATA, LINK link to the backend on the server Done
  11. JoeEskimo

    Help Moving Records To New Table

    There is an APPEND Query that would add the record to a table instead of erasing the old table.
  12. JoeEskimo

    How to display two records in a Text Box

    Set the forms default view in properties to continuous
  13. JoeEskimo

    How to speed up program

    By the way, Is this Macola you are attaching to?
  14. JoeEskimo

    How to speed up program

    Most of the time ODBC are not very efficient for queries. I have been quite successful with this: 1.Import your data from the ODBC Pervasive data into your access app using a "make a table query" 2.Run your process against this table Most of the time speed is no longer a problem...
  15. JoeEskimo

    How to shrink and compact a report? Please help

    Assuming your form is capturing data and sending it to a table, 1. Design a new query that has criteria set for only checked boxes for that person on the form. 2. Design a report to print your new query 3. Add a button to your form that prints the report I hope this helps.

Part and Inventory Search

Back
Top