Search results for query: *

  1. F

    Question on SortedFileList

    file1.txt file2.txt file10.txt Intuitive Numeral thanks :D
  2. 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...
  3. F

    Question on TextReader & TextWriter

    Can you post a code sample? Because there are string values that i don' know (xxx xxx xxx) and i want to overwrite them.
  4. 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"...
  5. F

    StreamWriter & SelectedItem question

    My ListBox has got item of this type: 1 09 89 0 1 2 4 66 778 0 But it doesn't write all Items in WriteLine why?! :'(
  6. F

    StreamWriter & SelectedItem question

    Because I need making files over or exactly 4096 byte
  7. F

    StreamWriter & SelectedItem question

    It works. Thanks :D But do you know how do i solve another problem. I want build a TXT File from ListBox1.Items PrivateSub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click IfMe.SaveFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then Dim...
  8. 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