ChrisRChamberlain
Programmer
I have a form with Grid1.Column1.DynamicBackColor = IIF(RECNO(
)=THISFORM.nTABLE,RGB(0,0,128),RGB(255,255,255))
and Grid1.Column1.DynamicForeColor =
IIF(RECNO(
)=THISFORM.nTABLE,RGB(255,255,255),RGB(0,0,0))
Unfortunately, for reasons various, it takes between 2 or 3 seconds to load each record, during which time 2 or more records, (if scrolled thru on up/dn arrow keys), may have a fore/background of RGB(255,255,255)/RGB(0,0,128), which is unsightly and could be unnerving to the inexperienced.
Once the loading is complete, all is normal.
What I am trying to acheive is one record with fore/background of RGB(255,255,255)/RGB(0,0,128) at a time.
TIA
Chris
and Grid1.Column1.DynamicForeColor =
IIF(RECNO(
Unfortunately, for reasons various, it takes between 2 or 3 seconds to load each record, during which time 2 or more records, (if scrolled thru on up/dn arrow keys), may have a fore/background of RGB(255,255,255)/RGB(0,0,128), which is unsightly and could be unnerving to the inexperienced.
Once the loading is complete, all is normal.
What I am trying to acheive is one record with fore/background of RGB(255,255,255)/RGB(0,0,128) at a time.
TIA
Chris