Results 1 to 7 of 7

Thread: [RESOLVED] Stack

Threaded View

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2007
    Posts
    25

    Resolved [RESOLVED] Stack

    Hi All,

    I was wondering how i could get the text to stack on top of each other like seen after end select
    The text is getting sent to a rich text box

    VB Code:
    1. Case "test"
    2.        If coding.SelLength > 0 Then
    3.           coding.SelText = "<html>"
    4.           coding.SelText = "<head>"
    5.        coding.SelText = "<TITLE>" & coding.SelText & "</TITLE>"
    6.        Else
    7.           coding.SelText = "<html>"
    8.           coding.SelText = "<head>"
    9.           coding.SelText = "<TITLE>TITLE</TITLE>"
    10.        End If
    11.  
    12. End Select
    13.  
    14. '<head>
    15. '<title></title>
    16. '</head>
    17. '<body bgcolor="#FFFFFF">
    18. '</body>
    19. '</html>
    20. 'Its coming out in a like like this
    21. '<head><title></title></head><body bgcolor="#FFFFFF"></body></html>
    22. 'Its coming out like this
    23. '<head><title></title></head><body bgcolor="#FFFFFF"></body></html>
    Last edited by Jazza; Jan 29th, 2007 at 03:20 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
  •  



Click Here to Expand Forum to Full Width