Hi there, it's me again... frag!
I have another problem!
I want to create some checkboxes (corresponding to a database field) on form-load for a form i have created in design-view.
Here is my code...
------------------------------------------------------------
Private Sub Form_Load()
Dim ctlCheckbox As Control
Set ctlCheckbox = CreateControl(Form.Name, acCheckBox,
acDetail, "", "", 100, 100)
End Sub
------------------------------------------------------------
I keep getting this error-msg:
Run-time error '2147':
You must be in Design view to create or delete views.
What's wrong?
thanx.
frag
I have another problem!
I want to create some checkboxes (corresponding to a database field) on form-load for a form i have created in design-view.
Here is my code...
------------------------------------------------------------
Private Sub Form_Load()
Dim ctlCheckbox As Control
Set ctlCheckbox = CreateControl(Form.Name, acCheckBox,
acDetail, "", "", 100, 100)
End Sub
------------------------------------------------------------
I keep getting this error-msg:
Run-time error '2147':
You must be in Design view to create or delete views.
What's wrong?
thanx.
frag