Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
GradientFill
Message
 
To
07/12/2004 15:14:21
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00967296
Message ID:
00967806
Views:
19
Perhaps this simple bit a of code will permit you to acheive what you need (put this in the init of your form.
LOCAL lnRow

ThisForm.ScaleMode = 3
ThisForm.DrawWidth = 1

FOR lnRow = 0 TO ThisForm.Height
 ThisForm.ForeColor = RGB(0,0,255-255*lnRow/ThisForm.Height)
 ThisForm.Line(0, lnRow, ThisForm.Width, lnRow)
NEXT lnRow
>Hi Mike,
>
>thanks, I had found that link, but didn't want to pay for it as I have never come across an API function that someone wasn't able to help me with. It turns out that using this function with VFP is very difficult due to the way VFP forms hwnds are handled, so I can't use it anyhow. :(
>
>Thanks for the suggestion.
>
>Frank
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform