G gator Mar 2, 2009 #1 why isn't this working? the background color remains the same. Private Sub lblApr_Click() Me.lblApr.BackColor = vbBlue End Sub
why isn't this working? the background color remains the same. Private Sub lblApr_Click() Me.lblApr.BackColor = vbBlue End Sub
M Mr. B Mar 2, 2009 #2 Hi, gator. Check the "Back Style" property of your label. To change the back color, this property must be set to "Normal". By default the Back Style of a label control is set to "Transaprent". HTH Mr. B (askdoctoraccess dot com)
Hi, gator. Check the "Back Style" property of your label. To change the back color, this property must be set to "Normal". By default the Back Style of a label control is set to "Transaprent". HTH Mr. B (askdoctoraccess dot com)
G gator Mar 2, 2009 #3 this is not working...??? Private Sub lblApr_Click() Me.lblApr.BackStyle = vbNormal Me.lblApr.BackColor = vbBlue End Sub
this is not working...??? Private Sub lblApr_Click() Me.lblApr.BackStyle = vbNormal Me.lblApr.BackColor = vbBlue End Sub
M Mr. B Mar 2, 2009 #4 gator, Change your first line of code to: Me.lblApr.BackStyle = 1 HTH Mr. B (askdoctoraccess dot com)
gator, Change your first line of code to: Me.lblApr.BackStyle = 1 HTH Mr. B (askdoctoraccess dot com)