Results 1 to 10 of 12

Thread: Test BB Code Highlighting and Colors

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,316
    Rep Power
    10
    Code:
    Sub DarkBlue()
    Dim ItBe As String
     Let ItBe = DarkBlue
    End Sub
    
    Code:
    'Converts the specified text with the VBE Color (Black, Blue or Green) using BB code
    Private Function BBColor(ByVal Color As Long, ByVal Text As String) As String
        Dim Msg As String
        Msg = "[color="
        '  http://services.runescape.com/m=forum/forums.ws?278,279,877,64690220
        'Msg = Msg & Choose(Color, "black", "blue", "darkgreen") & "]"
        Msg = Msg & Choose(Color, "blue", "blue", "darkgreen") & "]" ' Custom Colors Wonk
        Msg = Msg & Text
        Msg = Msg & ""
        BBColor = Msg
    End Function[/color]





    Code:
    Sub Blueviolet()
    Dim ItBe As String
     Let ItBe = Blueviolet
    End Sub

    Code:
    'Converts the specified text with the VBE Color (Black, Blue or Green) using BB code
    Private Function BBColor(ByVal Color As Long, ByVal Text As String) As String
        Dim Msg As String
        Msg = "[color="
        '  http://services.runescape.com/m=forum/forums.ws?278,279,877,64690220
        'Msg = Msg & Choose(Color, "black", "blue", "darkgreen") & "]"
        Msg = Msg & Choose(Color, "blue", "blueviolet", "darkgreen") & "]" ' Custom Colors Wonk
        Msg = Msg & Text
        Msg = Msg & ""
        BBColor = Msg
    End Function[/color]

    fox.gif
    Last edited by DocAElstein; 01-31-2022 at 12:18 AM.

Similar Threads

  1. Replies: 12
    Last Post: 09-22-2023, 03:53 PM
  2. HTML Code Test --post8798
    By DocAElstein in forum Test Area
    Replies: 19
    Last Post: 06-17-2018, 03:02 PM
  3. test BB Code
    By DocAElstein in forum Test Area
    Replies: 39
    Last Post: 05-23-2018, 02:47 PM
  4. Replies: 5
    Last Post: 12-11-2015, 06:42 PM
  5. CODE TAG Code Test
    By DocAElstein in forum Test Area
    Replies: 5
    Last Post: 09-16-2015, 05:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •