Search results

  1. DCrake

    Master form with combobox selection

    That is all down to how you want to construct your menu system.
  2. DCrake

    Question Why?

    You have to tables which have been joined using a common field. one table has 2 records that match and the other table has 13, therefore 2x13 = 26. For every record in table 1 it is being displaed for every record in table 2
  3. DCrake

    #Name error on label

    Also [StrLoginName] is a variable so it does not need [] around it
  4. DCrake

    #Name error on label

    are you using the .Caption element? ie Me.Label.Caption = ....
  5. DCrake

    Trimming address fields

    =Trim(Replace([SiteName] & ", " & [SiteAddr1] & ", " & [SiteAddr2] & ", " & [SiteCounty] & ", " & [SitePostCode],", ,", "))
  6. DCrake

    Master form with combobox selection

    You might be better using a listbox than a combo box. A combo box can get a little bit iscolated whereas a list box can be more intuative and the user has less mouse clicks to perform. Create a table that has two fields FrmName FrmAccessName FrmName contains the name of the form to open that...
  7. DCrake

    Trimming address fields

    Alot easier and quicker way is to use Replace() Address = Replace(Address,",,",",") Thus replacing all intances of ,, with ,
  8. DCrake

    DLookup problem

    Rs("PlacesAvailable") = Rs("PlacesAvailable") - 1
  9. DCrake

    Question Why?

    Do a search on Cartesian Product
  10. DCrake

    DLookup problem

    Your form eventDelegate does not have TxtDelegate or txtEvent control names Your form CoursesDelegate has a control named txtDelegateID but no control called txteventID but you do have a combo named cmboevent. take a look at the coursesdelegate form
  11. DCrake

    DLookup problem

    On your form CoursesDelegate do you have controls named DelegateID and EventID? You need to refer to the controls on the form not the fields they are bound to. So if you have a textbox called TxtDelegate that has the DelegateID as its controlSource you need to refer to the TxtDelegate Not...
  12. DCrake

    DLookup problem

    Dim Rs As DAO.Recordset Set Rs = CurrentDb.OpenRecordset("Select * From TblEventDelegate Where DelegateID = " & Me.DelegateID & " And EventID = " & Me.EventID) If Not Rs.EOF And Not Rs.BOF Then '///Record Exists Else '///New Record End If This will give you the same results
  13. DCrake

    Transfer data to excel

    Sundays are quiet. Have you referenced the correct Excel Object in your Tools and References to accommodate 2003?
  14. DCrake

    Help - VBA - Search Functionality - Database MS access

    You cannot use TextBox1.Text unless the control has the focus
  15. DCrake

    Entities, Attributes and Primary Keys

    When has your assignment to be in by?
  16. DCrake

    "Limit to list"...not working?

    Just tried in A2007 and the not in list error fired
  17. DCrake

    Question Date Stamping Comments - Help (Column History)

    Yes exactly that
  18. DCrake

    Question Date Stamping Comments - Help (Column History)

    Try this link for any pointers. Did notice you used >> which was wrong should be =
  19. DCrake

    Question Date Stamping Comments - Help (Column History)

    As 2007 does not support calculated fields that is why I cannot open it. Debs if you remove the field as it is not relevant to your issue and try and reduce it down to either 2007 or 2003 format I will endevour to retry.
  20. DCrake

    Question Date Stamping Comments - Help (Column History)

    If you go to Quick Links and select the bottom menu item Who's Online you can see who's on line and what they are doing. You won't see me as my profile is set to invisible.
Back
Top Bottom