Flickering tab controls

Gannet

Registered User.
Local time
Today, 06:26
Joined
Sep 21, 2006
Messages
55
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.
 
Figured it out

Minutes after posting I thought about setting the value to a string and then setting the string to the controlsource and it worked.
 

Users who are viewing this thread

Back
Top Bottom