Search results

  1. W

    Dcount

    hi thanks for your reply now im 10 steps ahead, however i dont have a table named quoteTbl, must i create 1?
  2. W

    Dcount

    please advise me how to go about using Dcount, the web is very confusing ive spent 1full day trying to make it work but to no success, and time is against me Combo553 is the column that should display the Dcount Values. RegistrationNumber would display the main quotation. the form name is...
  3. W

    Clipboard Messages

    Good Morning all how do i turn clipboard messages off, or choose not to save data on to the clipboard without the pop-up box.
  4. W

    Linking a form to another form

    easy peasy. thanks speakers.
  5. W

    ComboBox!!!

    thanks i deleted the control and started over, it wasnt much of a mission.
  6. W

    GoToRecord onClick

    hi John Thanks Man, the first code you gave me was a perfect fit, what does your last reply refer to.
  7. W

    ComboBox!!!

    thanks Bob, but now i get the error: the record source '~sq_cQuotation~sq_cAdditionals' specified on this form or report does onot exist. Quotation is my form name Additionals is my ComboBox Fields name
  8. W

    GoToRecord onClick

    Thanks for the code Vila Thanks for the Insight Eugin much apreciated.
  9. W

    GoToRecord onClick

    Hi VilaRestal, thanks for your Response. the TrackID is an Autonumber Field so what i done is i created a ComboBox with its record source set to display all TrackID's the database currently contains and ive hyperlinked them so if im in a entry and the TrackID has generated this number 10009 It...
  10. W

    ComboBox!!!

    Great Morning Experts. In my form I have a ComboBox Field. The Row Source Currently Tells the ComboBox to display all the current entries in the database, however, i only want records related to the entry im in to be displayed in the combobox. So using code, how do i tell the ComboBox to...
  11. W

    GoToRecord onClick

    DoCmd.GoToRecord , , acGoTo = [TrackID] i have a hypelinked ComboBox Field and when i select the TrackID (Contents in field) i would like the form that belongs to the TrackID to open, my code returns an error that says "you cannot go to the specified record" and sometimes opens forms with a...
  12. W

    GoToRecord onClick

    DoCmd.GoToRecord , , acGoTo = [TrackID] i have a hypelinked ComboBox Field and when i select the TrackID (Contents in field) i would like the form that belongs to the TrackID to open, my code returns an error that says "yo cannot go to the specified record" and sometimes opens forms with a...
  13. W

    Linking a form to another form

    Populate RELATIONSHIPS (tblClient : tblDocument, 1: more) please elaborate on the above Mstef
  14. W

    Calculating Fields

    Magnificent. Thanks A Million.
  15. W

    Calculating Fields

    Hi All this one is abit of a challenge i have a field named RepairStartdate (date format is short date eg: 00/00/000) 2nd field is named WorkingRepairDays (Format is Interger eg: 10) 3rd field is my desired calculated Field Named EstimatedRepairEndDate (Format is short date) now i want...
  16. W

    Alternate Row Shading!!!

    thanks, i was complicating things.:o
  17. W

    Alternate Row Shading!!!

    hi all after including the BELOW code in my OnFormat Event in the detail bar this is what my report looks like (see attached image). my back colour is set to white. Const shadedColor = 16777215 ' Const shadedColor = 12632256 ' alternative shade colors ' Const shadedColor = 12632256 ' Const...
  18. W

    command copy is not available

    it has an id field named ProductID and the ProductID field is generating this error, but its one of the fields that ussually gets edited so id like to copy the origional data (OnDirty) so the origional data isnt lost when edited sorry i had to edit my reply
  19. W

    command copy is not available

    It is in Continious form view, any guidelines?
  20. W

    command copy is not available

    im tryng to copy from a subform, and the field i'd like to copy from is based on a query. im trying to copy so that i dont loose information upon editing the records using the code Eugin gave me a few days ago: Private Sub Form_Dirty(Cancel As Integer) DoCmd.RunCommand acCmdSelectRecord...
Back
Top Bottom