Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dynamicbackcolor & me going nuts
Message
From
13/11/2000 22:39:12
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00441367
Message ID:
00441427
Views:
7
>The exact code is :

Hmmm, this works for me, can you find any differences?
create table DynamicTest (nColor n)
for lnI = 1 to 20
	append blank
	replace nColor with lnI * 200
endfor
go top
oForm = createobject('form')
oForm.AddObject('grid1', 'grid')
oForm.Grid1.RecordSource = 'DynamicTest'
oForm.Grid1.Column1.DynamicBackColor = "iif(nColor > 0, nColor, rgb(255, 255, 255))"
oForm.Grid1.Visible = .T.
oForm.Refresh()
oForm.Show(1)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform