Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
U

User 11061789

@User 11061789
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Multiline text box manipulating
    U User 11061789

    i figured it out Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click Dim counter As Integer = txtNames.Lines.Length - 1 ' create array to reverse line order ReDim fileNames(counter) For iLine = 0 To counter fileNames(counter) = txtNames.Lines(iLine) Next iLine ' using the array building a string starting from the end of the array Dim list As String = "" For iLine = 0 To counter list = list + txtNames.Lines(counter) + vbCrLf counter = counter - 1 Next iLine 'display results txtNames.Text = list.Trim End Sub

    Visual Basic help

  • Multiline text box manipulating
    U User 11061789

    I am making a little app and I am stuck. I have a multilined textbox and I would like a button to take the text and reverse the line order. So if the text was numbered each line as 1->9, pressing the button will reorder the lines so they are 9->1.

    Visual Basic help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups