Search results

  1. 5

    MouseMove event on disabled controls

    I know this sounds a bit counterintuitive, but I'm using a mousemove event to display help text for controls in my form. This works well, but I'd like to display help text when the control is disabled as well (to explain to the user why it's disabled). Short of superimposing transparent boxes...
  2. 5

    Edit field in VBA where field name is a variable

    Yeah, this was the first time I was trying to edit a field when there was no corresponding control in the form, so I managed to confuse myself a bit. Thank you both for your help. Me.Recordset.Edit.Fields(foo) = True gave me the error "Update or CancelUpdate without AddNew or Edit" but simply...
  3. 5

    Edit field in VBA where field name is a variable

    Apologies if this is obvious, but I've been struggling to figure out how to do it... I have a form and a VBA event in which I would like to update a field in the current record. However, the field name is stored as a variable so I can't just use Me!FieldName = __ I've tried simply the...
Back
Top Bottom