⟩ I generated one report design time i can color green. at run i want bule how to change dynamically? and which method i can over write?
To Change Color of Frame
override start
me.BackgroundColor = skyBLUE
OR
BackgroundColor = RGB(180, 225, 228)
''-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x
To Change Color of a specific Control
Override start
dim Control1 as AcTextControl
Set Control1 = me.getControl("MyControl") ''name of control
Control1.BackgroundColor= Blue
OR
BackgroundColor = RGB(180, 225, 228)