Search results

  1. G

    Duplicate error message help

    hi, the below scrip was taken from another forum member. i have put this in the Forms / error VBA but i still a little lost i have set 3 fields to be indexed not to allow duplicate information (Forename, Surename, DOB) i was then advised to error trap so it would highlight that i have...
  2. G

    this record set is not updateable

    this record set is not updateable Me.TimeSpan = Now() - CDate(Me.ArchiveDate)
  3. G

    script error Help

    please see below script error, im' a little lost CDate(Me.ArchiveDate) = invalid use of null Private Sub Form_Activate() Me.TimeSpan = Now() - End Sub
  4. G

    new idea duplicate surname and DOB

    hi , see below for the current code to find a duplicate surname (this works Fine) now that ive properly thought it through what i need to do is insert a surename and if (by Chance) when i insert the Date of Birth if this is the same highlight it as a duplicate record. However if these people...
  5. G

    Archive, removing records

    hi i have a form with various fields, on this form i have an archive button that places certain fields in an archive form. however this does not remove the information from the main form. pls see attached any ideas, as some will know i'm a newbie
  6. G

    Duplicate records

    pls can someone point me in the right direction have searched through the forums. i have two fields Forename & surename i need to prevent duplicate records if the forename and surename match another record.
  7. G

    Archive

    Hi, I have a main query with numerous records in, i have another query with archive records in. is there a way of hiding (or removing) archive records from the main query. have searched, please can somone point me in the right direction
  8. G

    Splash screen

    i have spash screen that runs for about 10 seconds, would like to reduce to about 4 seconds any ideas seee script below. Option Compare Database Option Explicit Private Sub Form_Close() DoCmd.OpenForm "Switchboard" End Sub Private Sub Form_Timer() On Error GoTo Err_Form_Timer DoCmd.Close...
  9. G

    expiry date (edit)

    I have a issue date and an expiry date feilds, the below script in my query is to automatically increase the date by one year, this works fine but i would like to be able to back date the script if necassary. i have checked the properties and the field is not locked. but it wont let me...
  10. G

    number criteria

    i have a six digit roling number, (100565) i have a totals query trying to add the amount of entries are in this query, however i need a criteria for it to look for a six digit number unless i have this criteria it returns 1 for 100565, and 1 for 100566 and so on any ideas searching db now
  11. G

    counting summary

    hi i have a number of query's (Current memberships, out of date memberships etc) all via a certain area/town. i am trying to find out total figures (how many members how many non members, how many in certain area/town. these need to be updated continuoulsy. do not no how to approach i ahve...
  12. G

    counting

    i am trying to count the number of records based in a query can some one send me in the right direction
  13. G

    trying to save report to specific file

    DoCmd.OutputTo acOutputReport, "MD Form",".xls" "C:\Documents and Settings\KevanAlderton.THERMOSHIELD\Desktop", True any ideas what is wrong ?? many thanks
  14. G

    Script error any ideas

    last ever question, i need a long hloiday it errors on: theId = ctl.Column(0, v) Private Sub Monthly_MD_Report_Click() 'Run a report displaying only the records chosen 'by the user in the form's listbox. Dim v As Variant Dim Frm As Form Dim ctl As...
  15. G

    QueryDef what is it

    why wont my DB reconise this script
  16. G

    list box report help!!

    ok i have a list box with January through to december 2005 i have linked this to my issue date which is entered (long date) the command button is trying to print a report of just the records that i issued in acertain month, but it comes up with a script error (see script below) i think the...
  17. G

    Monthly Report

    ok i think i know what i need (searching the forums gave me the idea) i have query that generates a report, i need this report to be flitered monthly is it possible to have afield where i enter the month so when i press the monthly report button it just prints any entries in that month...
  18. G

    Modifying a report

    i have created a report based on number (eg 100565) Now i need this report to report only on the previous month. entries. (number entries) I.e anything issued in april, all the dates in april but in the original number order. 100565, 100566 etc can i edit my exsisting report to do this, can...
  19. G

    automatic month

    auto date no problem but just an automatic month ?? any ideas???
  20. G

    Update Query/Converting

    Dear all, i have searched /researched and looked at hundreds of posts, and no luck. Im litlle bit out of my depth, i have posted this before but just got confused. i have two update querys, the first one identifys if a persons age (by date of birth) is under 16 a check box identifys if...
Back
Top Bottom