|
|
|
Click here to copy the following block | Private Declare Function RealizePalette Lib "gdi32" (ByVal hdc As Long) As Long
Sub BackgroundCircularGradient(frm As Form, ByVal startColor As Long, _ ByVal endColor As Long, Optional ByVal numSteps As Integer = 256, _ Optional ByVal xc As Single = -1, Optional ByVal yc As Single = -1) Dim startRed As Integer, startGreen As Integer, startBlue As Integer Dim deltaRed As Integer, deltaGreen As Integer, deltaBlue As Integer Dim r As Single, dr As Single Dim stp As Long Dim saveFillColor As Long Dim saveFillStyle As Long If xc = -1 And yc = -1 Then xc = frm.ScaleWidth / 2 yc = frm.ScaleHeight / 2 End If If xc < frm.ScaleWidth / 2 Then If yc < frm.ScaleHeight / 2 Then r = Sqr((frm.ScaleWidth - xc) ^ 2 + (frm.ScaleHeight - yc) ^ 2) Else r = Sqr((frm.ScaleWidth - xc) ^ 2 + yc ^ 2) End If Else If yc < frm.ScaleHeight / 2 Then r = Sqr(xc ^ 2 + (frm.ScaleHeight - yc) ^ 2) Else r = Sqr(xc ^ 2 + yc ^ 2) End If End If startRed = startColor And &HFF startGreen = (startColor And &HFF00&) \ 256 startBlue = (startColor And &HFF0000) \ 65536 deltaRed = (endColor And &HFF&) - startRed deltaGreen = (endColor And &HFF00&) \ 256 - startGreen deltaBlue = (endColor And &HFF0000) \ 65536 - startBlue RealizePalette frm.hdc dr = r / numSteps saveFillColor = Me.FillColor saveFillStyle = Me.FillStyle Me.FillStyle = vbSolid For stp = 0 To numSteps - 1 Me.FillColor = RGB(startRed + (deltaRed * stp) \ numSteps, _ startGreen + (deltaGreen * stp) \ numSteps, _ startBlue + (deltaBlue * stp) \ numSteps) frm.Circle (xc, yc), r, Me.FillColor r = r - dr Next Me.FillColor = saveFillColor Me.FillStyle = saveFillStyle End Sub |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|