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 Chriss Miller 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 Rascelon

  1. Rascelon

    Access Query performance help

    dojones: Are you saying that the query always takes awhile to load when you first open the form or have you tried opening the form using both queries and get quicker results with the 2nd query? If it is only that the initial loading of the form is slow, then it seems to me that that would be a...
  2. Rascelon

    Not sure how to get what I want with SQL code

    Thanks PH. That worked exquisitely. You were also right about Rudy's syntax. Thanks too Rudy for keeping me straight on the terms. I can't tell you how long I've been calling them left-right inner joins. [blush] Vince
  3. Rascelon

    Not sure how to get what I want with SQL code

    OK. I have 2 tables, tblAnalyte and tblWQStandard. There is a one to many relationship between the 2 tables. Unique analytes are stored in tblAnalyte and water quality standards for an analyte are stored in tblWQStandard. There can be more than one standard for any analyte but only one analyte...
  4. Rascelon

    Generate SQL FROM clause on-the-fly using code

    That is certainly a solution but not the flexibility that I was looking for. Thanks for responding though. Vince
  5. Rascelon

    Generate SQL FROM clause on-the-fly using code

    Thanks for the link. The search form works well but unfortunately won't allow more complex queries where data are pulled from more than one table (i.e. when table relationships have to be expressed in the FROM clause). What I want to do may be too difficult for my skill level but maybe if there...
  6. Rascelon

    Generate SQL FROM clause on-the-fly using code

    Does anyone have code to generate on the fly a SQL FROM clause based on a list of user chosen tables? I am creating a database for my boss that has a form that is an attempt to make a more user-friendly version of the Access Query Builder Environment. It is a simple multiple step form to help...
  7. Rascelon

    Can't get Delete query to run

    Well... that was easier than I thought. Thanks. Vince
  8. Rascelon

    Can't get Delete query to run

    I get an error message that says, "Could not delete from specified tables." when I run a simple delete query between 2 tables with NO dependencies. Here is the SQL. DELETE Table1.* FROM Table1, Table2 WHERE (((Table2.ID)=[Table1].[ID])); The ID column is the primary key for each of the...
  9. Rascelon

    Main Form and Subform Updating Issue

    It sounds as if you are initiating the Visible=true in the OnClick event of the Option Group. If that is the case then you would expect the code you made to Hide/Show the text boxes not to execute, because the Option Group did not experience the OnClick event. Maybe try a different route like...
  10. Rascelon

    Can't grab description property value for a Linked table

    I have code that goes through my database objects using ADOX and records table,view or linked table names, columns, data types and descriptions into a table. The code works fine for tables but when I come across a linked table the field description is always blank. I can grab the Linked table...
  11. Rascelon

    SELECT WHERE Field Names from 2 tables are equal

    Sorry for not being clear but I wouldn't know what the field names would be. My guess is that this isn't possible simply using SQL but I can do it using procedural code in Access (VBA), which is what I am working on now. Thanks anyway. Vince
  12. Rascelon

    SELECT WHERE Field Names from 2 tables are equal

    Is it possible to select fields from two tables where the field names are equal? I know that the field data types are all the same but I want to make a query that contains data where the field names are the same in both tables. Vince

Part and Inventory Search

Back
Top