Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9125539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:49:37+00:00 2026-06-17T06:49:37+00:00

net 2.0 program and in it I have a multi line text box. For

  • 0

net 2.0 program and in it I have a multi line text box.
For one of my operations I only need to retrieve certain parts of the txt box
for instance
samplecode

I need to retrieve the following

  • 01-11-2013 15-18-12 –
  • Computer: 740TMP
  • 01-11-2013 15-18-13 –
  • Computer: 740TMP

The text box can have just 1 entry or 30 entry. I know I can truncate the lines but then I would still have extra lines in the final results.. Any Ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T06:49:40+00:00Added an answer on June 17, 2026 at 6:49 am

    Use a List(Of String) to store the result with your desired lines. Then use a loop to iterate all lines in the TextBox and take what you need.

    For example:

    Dim desiredLines As New List(Of String)()
    Dim allLInes As String() = textBox1.Lines
    Dim datePattern As String = "dd-MM-yyyy HH-mm-ss"
    
    For i As Integer = 0 To allLInes.Length - 1
        Dim line As String = allLInes(i).Trim()
        Dim dt As Date 
        If line.Length >= datePattern.Length AndAlso _
            Date.TryParseExact(line.Substring(0, datePattern.Length), datePattern, Nothing, Globalization.DateTimeStyles.None, dt) Then
            desiredLines.Add(dt.ToString(datePattern))
        ElseIf line.StartsWith("Computer:") Then
            desiredLines.Add(line.Split("-"c)(0).TrimEnd())
        End If
    Next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a vb .net program that exports information to certain fields of an
I have a .exe program (console app) written in .net. I need to execute
I have a .NET program and a Borland Win32 program that need to pass
I have a asp.net program, and I need to send a lot of emails.
I have a VB.net program that I have reading a text file, what is
I have a vb.net program that uses mysql as its database. And it works
this can be asked with webform or winform... i have a .net program (exe)
I have a .NET CF program (running on a Smartphone) and I have written
I have a program written in VB.Net (Visual Studio 2008) that uses a DLL
I have a .NET 2.0 program that has a reference to Interop.WIA.dll (.NET), which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.