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: agfon
  • Order by date
  1. agfon

    Open Control SQL via VBA

    I have some VBA which identifies all of my dbs QueryDefs - including the temporary "~sq_" type queries. Knowing the form and control that a ~sq_c is associated with, is there a way of opening the control's row source via vba? -agfon
  2. agfon

    Slow Query response using Access

    I understand that criteria limits the results. Your original response suggested that I use a pass-through query. I removed my criteria to determine if the response time was any worse -- it wasn't. The sub-queries do join tables on the ORACLE backend. Then, the various sub-queries are joined...
  3. agfon

    Slow Query response using Access

    cmmrfrds, Actually, I've tried testing for that. I removed all of the criteria and it's still taking 5 minutes + to run a query that takes 8 seconds with the Access backend. It seems that when I open each subquery individually, everything runs quickly. However, when I link them together, the...
  4. agfon

    Slow Query response using Access

    I'm in the process on converting my access backend over to ORACLE. We're continuing to use access as a frontend interface. The conversion went well and opening the ORACLE tables is immensely more quick. However, when we attempt to create queries in access using the linked tables, the response...
  5. agfon

    Fill PDF Form

    I have several pdf forms with fields (i.e. name, location, phone, etc...) which need to be filled. Currently, this must be done manually. I have a database with the data and I'm looking to see if any VBA exists which will allow me to automatically open the pdf, fill in the blanks, and save the...
  6. agfon

    ListView ctrl & Windows XP

    Duane, This is a ListView - not a ListBox. The ListView has functionality that the ListBox doesn't. -agfon
  7. agfon

    ListView ctrl & Windows XP

    By-the-way, I tried dropping this reference into VBA and it did produce the desired results. -agfon -agfon
  8. agfon

    ListView ctrl & Windows XP

    I'm experiencing a problem with a query that references the selected item within a ListView. The query criteria is as follows: WHERE (((Table1.Rec_ID)=[Forms]![frm_main]![ListView1].[SelectedItem])) Prior to receiving Windows XP, this query fired without any issue. Now, it prompts the user...
  9. agfon

    Search VBE Modules

    Thanks, MajP. I spent the better part of the morning looking for anything to give me guidance. I appreciate the links. -agfon
  10. agfon

    Search VBE Modules

    Is there a way to code a function to search through the various modules in my dbs to look for a query name? -agfon
  11. agfon

    On Key Down Function

    stix4t2, Thank you very much for the code. It was exactly what I was looking for. -Fred
  12. agfon

    On Key Down Function

    These users are used to hitting 'Enter' to exit the field and move the focus to the Cmd_button that fires the query. I've expanded their selection of fields; however, I would still like the set-up to be similar. -agfon
  13. agfon

    On Key Down Function

    I have a series of textboxes designed to allow the user to input in query criteria. I would like to set them up to utilize on "On Key Down" function to start the query when the Enter key is pressed. This would be instead of setting the "On Key Down" sub for each field. Has anyone ever done...
  14. agfon

    Using a Frm to establish Qry Criteria

    PHV, The query is in the process of being adjusted to account for additional requirements. -agfon
  15. agfon

    Using a Frm to establish Qry Criteria

    PHV, My SQL view pane is similar to your example. My guess is that I have too many fields that I'm trying to limit with this method. -agfon
  16. agfon

    Using a Frm to establish Qry Criteria

    PHV, The only drawback is that it really increases the size of the SQL code when you have multiple columns utilizing this method. My query has around ten columns. When I use this method, the query fires fine. However, I cannot enter the query in design view afterwards. Access basically...
  17. agfon

    Using a Frm to establish Qry Criteria

    Thanks PHV. That seems to work. I'm trying it out now to see if there is any performance improvements. -agfon
  18. agfon

    Using a Frm to establish Qry Criteria

    I have a form with several text and combo boxes. It it set up to allow the user to input criteria and then run a query. In the criteria area of the query, the criteria of each column is set in the following fashion: [forms]![my_frm]![my_textbox] The problem I'm experiencing is when the...
  19. agfon

    Sort ListView by number or Date

    Thanks, Skip. I've seen this solution. I'm trying to avoid having a series of leading zeros. -agfon
  20. agfon

    Sort ListView by number or Date

    What value do I change from text to numeric? The field in the table is already numeric. Is there something on the Listview itself that can be changed? -agfon

Part and Inventory Search

Back
Top