Search results

  1. Kryst51

    Modify date() criteria

    Is your table field set to text? See my attachment and see if it helps you.
  2. Kryst51

    Modify date() criteria

    Look here, I think you need to use the Date Part function.
  3. Kryst51

    Changing background color of items in combo list

    I'll look more tomorrow.
  4. Kryst51

    Changing background color of items in combo list

    Nevemind, I misunderstood what the problem was - I thought you were talking about the controls on frmNewTimes.
  5. Kryst51

    Changing background color of items in combo list

    When I look at the DB in post 37, what I find is that the control "txtSelection" Needs to be requeried in the click events for both list boxes before they are set to being invisible. Using A2010 When I look at the DB in post 26, it works just fine in A2010 as a .mdb if I am reading the...
  6. Kryst51

    Conditional Formatting

    I don't see any way in conditional formatting to aply multiple conditions in an "AND" like fashion, I think you might have to use vba.
  7. Kryst51

    Incredibly Smart or Incredibly Stupid?

    Spam Reported seoconsultant
  8. Kryst51

    Form TextBox Issues

    Also, if the table is not there, it may be hidden, you can show hidden objects see attachment for how
  9. Kryst51

    Form TextBox Issues

    There is a drop down at the top of your left hand menu, switch it to tables.
  10. Kryst51

    Open form filtered with multipl conditions

    Ha, the exact thing I was trying to point out, doh (the Ands I mean, hence my first posting)! I was using something that someone had given me to help with this sort of thing.... so the single quotes were part of an example I had been given, probably which I applied incorrectly.
  11. Kryst51

    Open form filtered with multipl conditions

    Or actually something like this maybe?: Dim stLinkCriteria As String stLinkCriteria = "[Community]=" & "'" & Me![cmbcomm] & "'" stLinkCriteria = " '" & stLinkCriteria & "' & [Building]=" & "'" & Me![cmbbldg] & "'" stLinkCriteria = " '" & stLinkCriteria & "' & [Facility]=" & "'" &...
  12. Kryst51

    Open form filtered with multipl conditions

    Don't you need something like: DoCmd.OpenForm "Fac_Mgmt", , , '" & stLinkCriteria & "' And '" & stLinkCriteria1 & "' And '" & stLinkCriteria2 & "'
  13. Kryst51

    Access Newbie Report help

    Probably in the query, and your welcome. :)
  14. Kryst51

    Access Newbie Report help

    Check this out and see if any of it helps you.
  15. Kryst51

    Access Newbie Report help

    Have you tried setting the field property "Format" to Short Date or something like that?
  16. Kryst51

    Calculated Field Help

    How about a DLookup that concatenates everything? Then you can set a text box on each form with the same DLookup, hence the same information. See Here for examples, example 5 is what you want I think
  17. Kryst51

    Question Start at First Filed in Subform

    Great! I am glad you got it working. :)
  18. Kryst51

    Trouble with sql syntax in vba

    Well, that's good to know. Thanks!
  19. Kryst51

    MS Access 2007 Help

    If you aren't willing to redesign then you can put something LIKE this in the after update event of the Aircraft_Reg combo box/textbox Select Case Me.Aircraft_Reg Case A5-EAA, A5-EAB, A5-EAC, A5-EAD Me.Aircraft_Type = "A320" Case A5-RAA, A5-RAB, A5-RAC, A5-RAD Me.Aircraft_Type = "B737"...
  20. Kryst51

    MS Access 2007 Help

    Hmmmm. Are you willing to redesign your tables? If so you can set up an Aircraft_Reg table, and include the Aircraft_Type in that table. Then in Aircraft Details you would have a fk to the Aircraft_Reg Pk. Then you could display the Reg and the Type on a form either using a dlookup in an...
Back
Top Bottom