Search results

  1. D

    Disable tabindex highlight

    I have a couple of subforms that contain a series of navigation buttons. The button with tabindex '0' is highlighted on the subform. Is there any way to turn this off? I have tried setting all the tabstops to 'No' as well as changing the tabstop of the subforms to 'No' but nothing seems to...
  2. D

    referencing control properties from within control event

    Is there a key word to reference a control's properties from within a control event, similar to the way that you can reference the form that you're in using the "Me"? For example if I'm in a sub routine on a form, I can call Me.[ctrl].[property], but I want to do this more generically. I have...
  3. D

    DMax syntax

    The code is as follows: Private Sub cmd_ScopeID_Click() Dim db As Database Dim rst As Recordset Dim i As Integer Set db = CurrentDb Set rst = db.OpenRecordset("tdatScope") While Not rst.EOF If IsNull(rst!scopeID) Then rst!scopeID =...
Back
Top Bottom