I had several labels on my tab control form that flickered until I included this fix. I was building these labels using a value of another control(retain_IW_name). After using the fix I was no longer able to do this.
The code I used before the fix:
Me.Label668.Caption = "When did you live with " & Me.retain_IW_name.value & " ?"
The code I used after the fix:
Me.Label668.ControlSource = "When did you live with " & Me.retain_IW_name.value & " ?"
Since this fix changes all labels to textboxes I no longer had a Caption property and the displayed value was now in ControlSource.
Is there anyway to still build these using the ControlSource or any other method.
The code I used before the fix:
Me.Label668.Caption = "When did you live with " & Me.retain_IW_name.value & " ?"
The code I used after the fix:
Me.Label668.ControlSource = "When did you live with " & Me.retain_IW_name.value & " ?"
Since this fix changes all labels to textboxes I no longer had a Caption property and the displayed value was now in ControlSource.
Is there anyway to still build these using the ControlSource or any other method.