Search Result

Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
last record
  •  

  • charles07
    started a topic select records by latest date

    select records by latest date

    how can i get records by the latest date. ie. select last inserted records. mysql db structure below

    Code:
    timestamp  method  id comment
    2009-01-10 getThud 16 "....."
    2009-01-10 getFoo  12 "....."
    2009-01-10 getBar  12 "....."
    2009-01-11 getFoo  12 "....."
    2009-01-11 getBar  12 "....."
    desired results

    Code:
    timestamp  method  id comment
    ...
    See more | Go to post

  • internetintern
    started a topic DoCmd.FindRecord ends at last record

    DoCmd.FindRecord ends at last record

    hello,

    I have a code like:
    Code:
    Private sub button1_Click()
    DoCmd.FindRecord Me.fieldname.Value, acStart, , acSearchAll, , , False
    end sub
    but the problem is that the command stops searching at the last record. so the records before the current record are not searched. I thought with acSearchAll it should search the entire record list.

    I need some help here.
    See more | Go to post
Working...