Results 1 to 10 of 38

Thread: Testing and making announcments

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #9
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    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]

    Attachment 3822
    Attached Images Attached Images

Similar Threads

  1. testing
    By Jewano in forum Test Area
    Replies: 7
    Last Post: 12-05-2020, 03:31 AM
  2. Replies: 18
    Last Post: 03-17-2019, 06:10 PM
  3. VBA Trick of the Week: Range to Recordset Without Making Connection
    By Transformer in forum Tips, Tricks & Downloads (No Questions)
    Replies: 0
    Last Post: 07-11-2013, 06:21 PM
  4. Data sorting & Graph making according filters
    By leopaulc in forum Excel Help
    Replies: 2
    Last Post: 04-05-2012, 08:56 AM
  5. Making a Histogram Chart Using Arrays
    By Rasm in forum Download Center
    Replies: 2
    Last Post: 04-05-2011, 07:22 AM

Posting Permissions

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