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: *

  1. JDettman

    FVL328 BOTTOM LINE???

    Rob, One other thing: Consider reducing the level of encry to speed things up. I realize this will reduce security, but really many folks don't need tripe DES and it's a lot of overhead. You may find a considerable improvement by using DES. Of course igore all this with your already...
  2. JDettman

    FVL328 BOTTOM LINE???

    Rob, I've got a client with two FVL328's. I don't have as many connections as you, but wanted to suggest that you should update to the lastest firmware update (rev 30). I've been working with Netgear tech support off and on for the past several months. They were aware of the slowdown and...
  3. JDettman

    Form Procedure Question

    Should be: If Me![WorkDay1] = 0 Then Me![WorkDay1Reason] = Me![WorkDay1Reason].ItemData(0) Else Me![WorkDay1Reason] = Me![WorkDay1Reason].ItemData(6) End If Jim.
  4. JDettman

    Form Procedure Question

    Actually, you can use the default value property, but you must use a fully declared reference: =Forms![myFormName]![myComboControlName].ItemData(0) Jim.
  5. JDettman

    RePost - Code Optimization...

    Hum... that should be fairly fast. Contrary to popular belief, DCount() can be faster then other methods and in this case, I think it would be. You do have the holiday table indexed on the date correct? Jim.
  6. JDettman

    Is there any "decode" function available in Micorosoft SQL syntax?

    As has been said, there is no Decode() available. However you can write any custom function and call it from a query, so you can get equivalent functionality. In a query, you'd define a column as: NewName:SomeFunction([arg1],[arg2],...) The only requirement is that you must pass a field name...
  7. JDettman

    Urgent. Object "Database"

    Strange. First go in and check any reference. Close the MDB and Access. Now reopen and uncheck the reference you just checked. This will refresh the references again. Now try a compile. Still errors on the DIM dbs as Database? If so, reregister the DAO lib by following step 1 in the MSKB...
  8. JDettman

    Calling one report from another

    Use a subreport to print the parts list for each catalog or from the code calling the catalog report, call the parts reports. Jim.
  9. JDettman

    Open form using different query criteria?

    Yes it's possible. But a little more detail is required. How do you indicate that a order is delivered/undelivered? And do you have a form for the user to change the criteria (ie. a checkbox for undelivered only)? Jim.
  10. JDettman

    Urgent. Object "Database"

    Besides unchecking the ADO, you need to check the DAO reference. Please see first post. Jim.
  11. JDettman

    Urgent. Object "Database"

    THe default data lib for A2000 is ADO. Open a module in design view, click tools/references. Uncheck the ADO reference. Then scroll down and find "Microsoft DAO 3.60 ...." (it's close to that - don't remember the workding exactly - just look for "DAO") and check it...
  12. JDettman

    Sum Unbound Text Boxes

    Actually, because you used SUM(), which is used in conjunction with SQL and queries. So yes, it only works on bound controls. Instead do this: =[Text1]+[Text2]+[Text3] Jim.
  13. JDettman

    yes/no fields

    You'd use the ABS function: =ABS(<value>) Jim.
  14. JDettman

    RePost - Code Optimization...

    What's hurting you is the DCount() for the holidays. Your testing each and every date to see if it's a holiday. It would be much more efficent to get ALL the holidays between start/end dates with one recordset, loop through them and total, rather then checking each date to see if it's a...

Part and Inventory Search

Back
Top