VBA: Change the Color of an Object
========= QUESTION --------- I need to change the color of an object from within my VBA code. ========= ANSWER --------- See EXAMPLES ========= EXAMPLES --------- Private Sub ReLinkTables_Click() Me.ReLinkTables.BackColor = RGB(186, 20, 25) Me.ReLinkTables.ForeColor = Hex(FFF200) Me.CurrentStatusLabel.Caption = "Clicked: ReLink Tables" Me.CurrentStatusLabel.BackColor = Me.CurrentStatusLabel.ForeColor = vbWhite Me.CurrentStatus = _ "Opening Linked Table Manager" & [...]