Results 1 to 2 of 2

Thread: String handling

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2001
    Posts
    1

    Unhappy String handling

    I am using two different platforms mainframes(CICS) and VB.
    Connecting VB to CICS

    I want to move spaces to a string variable at run time. The no .of spaces are also vary .

  2. #2
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Unless I'm totally missing the plot here

    VB Code:
    1. Option Explicit
    2.  
    3. Private strSpaces As String
    4.  
    5. Private Sub Form_Load()
    6.     strSpaces = String(45, " ")
    7. End Sub
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

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