Hi
I have this code in vba which I would Like to use to disable all textbox controls
on my form but it does not work...can anyone help?
Set frmcurrent = Form_frm_EditQuotes
For Each ctlContol In frmcurrent.Controls
If frmcurrent.Controls = acTextBox Then
Form_frm_EditQuotes.AllowEdits = False
End If
Next
thanks


Reply With Quote
