Search results for query: *

  1. P

    Parsing a text file

    I am a newbie trying to parse a variable length text file with field identifiers and then put it back together so it becomes a fixed length file. I have a REXX script that I wrote to do this but think it will run much faster using VB. The format of the file is...
  2. P

    RESOLVED - File selection process

    I am a newbie trying to write a conversion program that will reformat lines of data in a file. I want to allow the user to select file they want converted and then open that file, but can't find anything in the books I am using. All the examples use hard coded file names when opening a file...
  3. P

    RESOLVED - Date and time problem

    I am trying to add a date and time to a form using a timer control. The code I used for the tick event is: Private Sub tmrTrial_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrTrial.Tick lblDateandTime.Text = CStr(Now) End Sub End Class This does show...
Back
Top