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

    Use filter on 2 search criteria on a form

    I think I got it Simply add it to the filter string such like DoCmd.ApplyFilter , "DATE like #8/5/2002# AND PARTNUM = 'tryit'"
  2. peini

    Use filter on 2 search criteria on a form

    I've tried to search on the forums, but couldn't find my answer. I have a question I know it's working on one criteria as follows DoCmd.ApplyFilter , "DATE like #8/5/2002#" Is it possible to use applyfilter on 2 search criteria? Thanks
  3. peini

    Using user input to go to record

    Does this work in Access97?
  4. peini

    replace part of the field

    Thank you for your quick answer. I just tried it. I got complier error points to this line db As Database and says user-defined type not defined Probably I misplaced the code. Got to go home now to take care my baby. I'll try again first thing in the morning tomorrow. Thank you again.
  5. peini

    replace part of the field

    Oops! I didn't reply all your questions. Yes, I'm trying to replace all the dash in for that column. It simply pops up the error message, the query not runn at all. Looks like it can't recognize the replace function. I'm using Access 2000
  6. peini

    replace part of the field

    When I ran the query it pops up a message Undefined function "replace in expression
  7. peini

    replace part of the field

    I've tried to use the update query to update the table, I thought I can use replace function but it doesn't work, any other way to do it Thanks. Update table1 Set col1=replace(col1,"-","") Where instr(Col1,"-")>0
  8. peini

    Eliminate duplicate rows based on a single field

    What I'll do is 1. make a query that select the distinct records based on the field you want 2. then use make-table query to make the new table which contains those distinct records 3. delete the old records 4. append the new distinct data
  9. peini

    Microsoft vbscript regular expressions 5.5

    That will add "Microsoft VBScript Globals" The thing I need is "Microsoft vbscript regular expressions 5.5"???
  10. peini

    Microsoft vbscript regular expressions 5.5

    I need to reference "Microsoft vbscript regular expressions 5.5", so I can use RegExp object. The path for that is c:\winnt\system32\vbscript.dll\3 I could do it in Access 2000 (cause it's already show on the reference list, p.s. you couln't type in the path, it won't recognize the...
  11. peini

    query between startdate and enddate

    Hi, crpjaviman I end up using the same concept you suggested and it's working now. Thank you.
  12. peini

    query between startdate and enddate

    Thanks for the infor. I will see if there's any other to work around. Any other suggestion?
  13. peini

    query between startdate and enddate

    I have created a QBF, which depends on what the search criteria users enter into the form. The form variables will be feed into the query criteria dynamic. The problem is I want the user be able to search based on the date, there're startdate and enddate on the search form, and those are all...

Part and Inventory Search

Back
Top