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

    I get it. Much easier to debug and manage if you don't actually have to check the properties of all the controls on the form. Thanks for the inpu.
  3. 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...
  4. D

    DMax syntax

    It's also my first try using a variant by the way, and I thought the square brackets were the syntax for the variant. The code never gets that far. It always hangs up on the DMax. As posted, I get an error 2465 Cant' find the field...
  5. 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 =...
Top Bottom