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!

Search results for query: *

  1. wendyp

    Query works in phpMyAdmin not mysql_query (not multi statement)

    I'm having hair-pulling-out trouble with a query: SELECT mwr.item_id, mwr.category_id FROM ( SELECT mwi.item_id, mwc.category_id FROM ( ( SELECT i.item_id FROM ( ( ( tbl_items i INNER JOIN tbl_items_categories ic ON i.item_id = ic.item_id ) INNER JOIN tbl_categories c ON c.category_id =...
  2. wendyp

    SELECT Query - AND on 2 rows?

    Beautiful! Thanks a million - I would have never thought of that. And I knew it had to be simple.
  3. wendyp

    SELECT Query - AND on 2 rows?

    I have a table like this: id cat_id 1 3 2 3 3 3 1 4 2 5 So an ID can have more than one category. I want to select records that are in both category 3 and 4. If I make an SQL statement with OR, I'll get all the items for category 3 and category 4. But...
  4. wendyp

    Loading entire page in AJAX div

    Hi - *very* new to AJAX. I'm using Joomla (which I'm new to, too), with Docman. I created a Joomla module to pick up a list of categories and sub-categories using AJAX. This worked perfectly until I turned Joomla's friendly URL's on. Now the entire page loads in my little search box. Not...
  5. wendyp

    IE 7.0.6000.15xxx vs 7.0.6000.16xxx & Javascript

    Yes - the problem is solved. Thanks to your hint about the Javascript code needing help, I found a different calendar script that works much better. http://www.electricprism.com/aeron/calendar/ It is a little harder to setup - uses external mootools library, but it seems to be very stable in...
  6. wendyp

    IE 7.0.6000.15xxx vs 7.0.6000.16xxx & Javascript

    Hi - so frustrated with IE! I have a form: http://www.idleinc.com/dev/index.php (it's not live, so go ahead and fill it in with gibberish if you want to see what it's doing) I am using IE 7.0.6000.1575 and it works perfectly. My customer however is using a LATER version (7.0.6000.166xx) and...
  7. wendyp

    IE doesn't show/hide

    Hi - I'm fairly new to Javascript and this is working great in FF, but not in IE. http://www.idleinc.com/dev/testform.php If someone picks an airport, the address box is supposed to go away and the boxes for flight info are supposed to appear. I've tried several different things, but here's...
  8. wendyp

    Retrieve from Archive causes PK damage?

    I have a large and complicated system and am adding an archival system to keep the .mdb file small. I archive all the customers, their orders, invoices, products, transactions and service calls if they have been inactive for 2 years. I have the archival system working just fine. Now, one of...
  9. wendyp

    Subform sourceobject can't assign

    I ended up have to delete the master / child links from the form properties. Then I reassign them with code. Here's the code that worked: 'Find the right form for this product Dim frmName As Variant frmName = DLookup("product_form", "tListProds", "id = " & Me.product_id)...
  10. wendyp

    Excel External Links > Access Lock up on Refresh

    My solution was the the relationship was defined in my version and there was no relationship in the customers version. Added the relationship and then things worked fine.
  11. wendyp

    Access not calculating correctly

    That worked like a charm. Thanks a million! A star for you. /Wendy
  12. wendyp

    Complicated Table/Query Situation

    Sorry it took so long to get back to you. UNION was exactly what I needed. Took 5 product tables and combined them into one great (but very, very long) query. I knew it couldn't be that hard. Thanks, a star to you. /Wendy
  13. wendyp

    Complicated Table/Query Situation

    Hi all - I have a fairly complicated table setup: 5 different product tables tProdDoors (PK: id, field to link: order_item_id) tProdGlass (PK: id, field to link: order_item_id) tProdScreens (PK: id, field to link: order_item_id) tProdOptions (PK: id, field to link...
  14. wendyp

    Access not calculating correctly

    Thanks! I had been told to use currency, but I went and checked after your post and it is accurate to 15 decimal places, but on the left side of the decimal! Not what I need for percentage calculations. I've converted all my percentages to decimal with a scale of 15 (numbers on the right of...
  15. wendyp

    Access not calculating correctly

    Hello - another problem with decimals.. In the tax table, I have the following pertinent fields: numStateTaxRate numCountyTaxRate numCityTaxRate numDiscountRate They all have a data type of currency, format of percent and I've tried with decimal places being "auto" and set to 6. I have a...
  16. wendyp

    Variable variables for array function error 2482

    Beautiful! That seems to be exactly what I needed. You get a star - especially for first thing Monday morning! Thanks, /Wendy
  17. wendyp

    Variable variables for array function error 2482

    That looks like it might do the trick. What library is it in? I just tried Microsoft Scripting Library, but although it can find "Scripting" as an object type - it can't find "Dictionary" as a method or member. /Wendy
  18. wendyp

    Variable variables for array function error 2482

    I can't figure out if this is possible in Access. I am getting Run-time error 2482 can't find the name "test1" you entered in the expression. I am sending 2 arrays to a function that executes an SQL INSERT procedure. One array contains the table field names and the other the data. If I could...
  19. wendyp

    Excel External Links > Access Lock up on Refresh

    Hello - I am an Access programmer and a customer came to me wanting to put a spreadsheet into Access. It really should be a spreadsheet, they just want to use Access to supply pull down lists in Excel so they don't have to type so much. I use Excel for pretty basic things, but I figured out...
  20. wendyp

    IE FF absolute footer div different

    Thanks for the idea. I changed the CSS to have margin 0 0 0 0; and padding 0 0 0 0; for the top and footer sections. Then I went so far as to take out all the text from the header and footer, except: <div id="topmenu" align="left">top menu </div> <div id="footermenu" align="center">footer...

Part and Inventory Search

Back
Top