Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Add an up arrow to a Grid Header
Message
 
 
To
27/02/2000 14:39:09
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00338163
Message ID:
00338216
Views:
13
Mike,

I could enforce Wingdings being installed on the boxes. *s*

Using a label got away from some problems of a bmp background, especially on grids that aren't boring grey. Also with the label I can simply set it's color based on the color of the grid. The ColorFactor() udf does this:
* ColorFactor.prg 26-Oct-98

* This routine returns a % increased/decreased color

lparameter pnColor, pnFrac

local r, g, b

r = ( pnColor % 256 ) * pnFrac
g = ( ( pnColor / 256 ) % 256 ) * pnFrac
b = ( pnColor / 65536 ) * pnFrac

return rgb( r, g, b )
>Since your just moving objects back and forth, is there any advantage to using a Wingding font (that may or may not exist) over a bitmap?
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform