Search results for query: *

  • Users: flash.tato
  • Content: Threads
  • Order by date
  1. F

    Question on SortedFileList

    I need merging into one file container many file. But they must be merged in alphabetical order. I tried using SortedFileList but it doesn't work :confused: and i don't understand why The code is ------------------------------------------------------------------------ Public Class Form1...
  2. F

    Question on TextReader & TextWriter

    I have a file with this structure 4 81 xxx xxx xxx 0 4 82 xxx xxx xxx 0 4 83 xxx xxx xxx 0 4 84 xxx xxx xxx 0 xxx xxx xxx are values that i don't know. I want that clicking a button it search the line that it starts with "4 81" and edit xxx xxx xxx (in the same line) with "789 980 650"...
  3. F

    StreamWriter & SelectedItem question

    I build an application that it ReadLine a text file and it adds all Line in ListBox1.Items IfMe.OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then ' Inizializza una nuova classe di StreamReader Dim sr AsNew IO.StreamReader(OpenFileDialog1.FileName) WhileNot sr.EndOfStream ' Legge...
Back
Top