G
Guest
I got around adding a button in an option group (asked below) by putting in
30 options hidden and then they are made visible and captions added with the
following code.
For Each ctl In Me!Choice.Controls
If Not category.EOF Then
ctl.Visible = 1
Debug.Print category!CompanyName 'make sure of the
ctl.Caption = category!CompanyName
category.MoveNext
End If
Next ctl
My question is that to get 30 choices I used two columns and even though the
option values are numbered top to bottom the options are populated left to
right. Does anyone know how to select them in order?
30 options hidden and then they are made visible and captions added with the
following code.
For Each ctl In Me!Choice.Controls
If Not category.EOF Then
ctl.Visible = 1
Debug.Print category!CompanyName 'make sure of the
ctl.Caption = category!CompanyName
category.MoveNext
End If
Next ctl
My question is that to get 30 choices I used two columns and even though the
option values are numbered top to bottom the options are populated left to
right. Does anyone know how to select them in order?