RGB Function

Returns a long integer colour value consisting of red, green and blue components.

Syntax:

RGB (Red, Green, Blue)

Return value:

Long

Parameter:

Red: An integer expression that represents the red component (0-255) of the composite colour.

Green: An integer expression that represents the green component (0-255) of the composite colour.

Blue: An integer expression that represents the blue component (0-255) of the composite colour.

Error codes:

5 Invalid procedure call

Example:

Sub ExampleColor

Dim lVar As Long

    lVar = rgb(128,0,200)

    MsgBox "The colour " & lVar & " consists of:" & Chr(13) &_

        "red= " & red(lVar) & Chr(13)&_

        "green= " & green(lVar) & Chr(13)&_

        "blue= " & blue(lVar) & Chr(13), 64,"colours"

End Sub