Search results

  1. D

    Line return from string to Field

    Not sure, but it all depends on the receiving field data-type. aa = Me.D1AM + vbNewLine & DLookup("[Given]", "Volunteers", "[ID] = " & Me.Combo14) This seems to be passing a STRING value. I'd use: aa = Me.D1AM & vbCRLF & "'" & DLookup("[Given]", "Volunteers", "[ID] = " & Me.Combo14) & "'"...
  2. D

    Access subform will not refresh

    Bit late, but.... I seemed to have an identical problem to the above. My solution: I had set one of my sub forms (form not container) 'data entry' properties to True. Setting it back to False fixed this. ATB, Darrylle
Top Bottom