B
Bill
Got me stumped.............
==================================
Private Sub Form_Open(Cancel As Integer)
a = Split(Me.OpenArgs, ";")
Me.RecordsetClone.FindFirst "[RecordID] = " & a(0)
Me.Bookmark = Me.RecordsetClone.Bookmark
Call setImagePath
If UBound(a) > 0 Then
If a(1) = "New" Then
Me.cmboClasses.SetFocus
Me.cmboClasses.Dropdown
End If
End If
End Sub
=================================
Form opens and the combo box drops down, except
that the dropped portion looks like a listbox and is
about 1-inch below the combo box and 3/4-inches
to the right of the combo box.
==================================
Private Sub Form_Open(Cancel As Integer)
a = Split(Me.OpenArgs, ";")
Me.RecordsetClone.FindFirst "[RecordID] = " & a(0)
Me.Bookmark = Me.RecordsetClone.Bookmark
Call setImagePath
If UBound(a) > 0 Then
If a(1) = "New" Then
Me.cmboClasses.SetFocus
Me.cmboClasses.Dropdown
End If
End If
End Sub
=================================
Form opens and the combo box drops down, except
that the dropped portion looks like a listbox and is
about 1-inch below the combo box and 3/4-inches
to the right of the combo box.