Search results

  1. M

    Disable Return Key

    Is there a way to disable the return key on a form, or perhaps assign a function to it?
  2. M

    Associate to fields

    It has the path to the file name. The logo field is a simple text field of up to 200 charecters. records 1 is LOGO: c:\datashow\images\BT.gif COMPANY: British Telecom
  3. M

    Associate to fields

    I have been pulling my hair out over this one. Table One has 4 fields, 2 of which are called Logo, and company. I am trying to "connect" them both to gether, so that if the user selects "john's hotel" in a form then the corresponding logo will link. I beleive the i need to split the tables...
  4. M

    text import 1st record missing

    got it - it omitted the ", true" from the end of the code. DoCmd.TransferText acImportDelim, "song specification", "list", "\\disco\djpower\Songs Played.his", True
  5. M

    text import 1st record missing

    When manually doing a .txt import all is fine using my own import specification. when i use this code DoCmd.TransferText acImportDelim, "song specification", "list", "\\disco\djpower\Songs Played.his", True the first record in the text file to import is missing any suggestions??
  6. M

    Run code every 5 minutes

    I have the following code i would like to run every 5 minutes DoCmd.RunSQL "DELETE * FROM data;" DoCmd.RunSQL "DELETE [list].song1 FROM [list] WHERE (([list].song1 = ""!F:""))" DoCmd.RunSQL "UPDATE list SET list.song = Mid([song],2)" At the moment the code is on command "button19" Q. How...
  7. M

    Deleting records that are 10 minutes old

    this is what i have so far dbs.Execute "DELETE * FROM list WHERE DateDiff("n",[omit12],Now())>=50" and the code stops on the "n"
  8. M

    copying table data within same table

    Because sendto is a text field that gets stripped with a "Iff" CLAUSE, AND HAS IT'S BRACKETS DELTED. Then after Copy the data to omit12, all the info is deleted from sendto. And i'm left with time data in a time formatted field.
  9. M

    Deleting records that are 10 minutes old

    I keep getting an error and the "n" is highlighted. parentenethess orror
  10. M

    copying table data within same table

    I have a table called "list" The field "sendto" contains time data. I am trying to copy all the data in the "sendto" field to a nother field called "omit12" Both fields are in the same table - can this be done so far i have DoCmd.RunSQL "INSERT INTO list SELECT [list].sendto FROM list;"
  11. M

    Remove a Filter from a Recordset

    try this DoCmd.RunCommand acCmdRemoveFilterSort
  12. M

    Find Record using Calendar control

    I have searched and searched. What i want to do mus be simple. I have a form with the calendar control set to mile-o-philes spec, which is triggered from my "diary" form. I am trying use the calendar to find a record on my "diary" form. The control on the diary form is called "Date of Func"...
  13. M

    Deleting records that are 10 minutes old

    I have a table with a a time/date field. Is it possiable to delete every record that is 10 minutes old?
  14. M

    Find and replace text in table

    thank you dcx693 for you help. However, your suggestion did not work out - and i posted again since it was now totally different question to the original title
  15. M

    Omit ")" at the end of a sting

    Thank you works a treat
  16. M

    Omit ")" at the end of a sting

    have a ")" at the end of a string of text which i need to omit, any ideas? i have this IIf(Left([time],10)=")","",([time]))) but the whole thing deletes
  17. M

    Find and replace text in table

    Not i need to omit a ")" which is at the end of the string. Any ideas? i have this IIf(Left([time],10)=")","",([time]))) but the whole thig deletes
  18. M

    Find and replace text in table

    Got it - Thanks very much for your hard work
  19. M

    Find and replace text in table

    i now have this IIf(Left([Song],1)=Mid([song],2),[Song]) and it just earses every thing in the song field
  20. M

    Find and replace text in table

    i am also trying to delete the first letter from the string, the letter varies. what i have so far: IIf(Left([Song],1)=Left([song],1),[Song]) but it does not work - nothing much in help
Back
Top Bottom