Go To A Specific Line Of Text File Using .net?

Jun 8, 2011

I am reading a text file line by line using StreamReader.Readline(). After reading a line i have to check whether some fields of the line which is read are present in the rest of the file or not. What i am doing is that after reading a line from the file i am passing the streamreader to check whether there are multiple entries. i am trying to use line.Length() to get the length of line, so using this length i can go back to the line

my code:

Dim pos as Long
sr = File.OpenText(filepath)
While sr.Peek() <> -1

[code]....

my problem is that it is not giving me the expected line or it is skipping some part of the line.how can i return back to my line?

View 1 Replies


ADVERTISEMENT

Reading A Specific Line From A Text File And Displaying It In Individual Text Boxes?

Feb 16, 2010

I've been writing a weight program for flooded pressure vessels and I'm having trouble retrieving the data from the text files I've been saving. I know how to write the data to the text file, but retrieving it with OpenFileDialog is not so easy for me.The user has individual text boxes that they input strings or numbers into and when they save the file, each text box input is written to one line in the text file. For example, the first text box is for the username, therefore the first line of text that is saved is the person's name, the second text box is the customer, thus the second line in the text file is the customer name, and so on.

(Actually, the first line of text in the saved file designates whether English units were used or Metric units because when the user retrieves the saved file, English units will open one form and Metric units will open a separate form, so some If...Then statement will need to occur).I need to be able to read the first line, have either my "EnglishForm"form open or my "MetricForm" form open, and then have each subsequent line of text be displayed in their corresponding text boxes. I know I need to use ReadLine or LineInput, but I don't have a clue what to do.Assuming the syntax I've displayed below would just magically work (if only life were that easy), it would look something like this

If FirstLineOfTextInFile = "English" Then
EnglishForm.Show()
ElseIf FirstLineOfTextInFile = "Metric" Then[code]....

And so on...I read a lot of articles from the MSDN library and exhausted each link that I've looked through from Google and Bing, but most only retrieve data from the file to a single text box through some loop or streamreader and don't take into account multiple forms.

View 17 Replies

How To Go To A Specific Line Of Text File

Jul 26, 2011

i am reading a text file line by line using StreamReader.Readline(). After reading a line i have to check whether some fields of the line which is read are present in the rest of the file or not.What i am doing is that after reading a line from the file i am passing the streamreader to check whether there are multiple entries. i am trying to use line.Length() to get the length of line, so using this length i can go back to the line

my code:

Dim pos as Long

View 2 Replies

Extract Specific Line From Text File?

Aug 8, 2009

My text file look like this[code]...

I want to extract those lines according to value in ( ).

View 10 Replies

How To Replace Specific Line In Text File

Aug 12, 2009

I was wondering how I would go about replacing a specific line of text with different text, and then later reading a specific line of text (from the same file). The text file has a lot of lines, and basically the layout is like this:
Something1 Data I want to read
Something2 Data I want to read
Something3 Data I want to read
Each line has a specific word, and then after that word is the data I want to use for the form.

View 10 Replies

Overwrite Specific Line In Text File

Jan 12, 2010

How to read from a line in vb .net, I need to do the following:
change the line in a text file
[Path] = "c: hiscertainpath"
With this line
[Path] = "c: hatother
ewerpath"

These paths will most certainly be different lengths, so I need to either replace what's in the quotes or erase the line completely and enter a new one, but in the same spot, not appended to the end of the document.

View 5 Replies

Read Specific Line In A Text File

Jul 31, 2011

how I would read specific line in a text file.Is this possible, if not I would like to know so that I can make the extension in C#?

View 1 Replies

Read Specific Text File Line?

May 26, 2009

Is there anyway to read a specific line from a text file. Such as reading the tenth line of a text file?

View 3 Replies

Reading A Specific Line In A Text File?

Nov 28, 2011

I have been learning VB for about 3 months now at college and decided to enhance my skills by making my own project at home. My project is basically a game where you have to guess if the next number will be higher or lower than the previous version and you can place bets on it. I have done all of this ok but I wanted to create a high score system so that you could save your score.I can manage to write out to a text file ok so that it looks like this

Highscores
Name
Score

[code]....

etc. But I am not sure on how to read in a specific line. So for example I want lblHighscore1.text to equal line 3 of the text document (as vb counts the first line as 0) So far all I have is this;

Dim objReader As IO.StreamReader = New IO.StreamReader("C:UsersKarlDesktopHighScore.t xt")
lblHighscore1.Text = (objReader.ReadLine)

View 3 Replies

Writing To Specific Line In Text File

May 6, 2010

I am making a vb.net app and I need to know how to overight onto a specific line in a text file. For example:[code]Now, I want to completely overight the "B" to an "A" and the line I need to write on is "2" also, my application will produce dynamic text files as well so I wont always be able to know what line exactly to overight. So my question is, how do I write to a line when I know what line it is and how do I search for a specific line and overight that.

View 3 Replies

File I/O And Registry :: [VB2008] Change Specific Line In A Text File

Jan 13, 2009

I need to be able to change a path inside a document ( a config file to a program) to the current directory of the application im creating in VB so the text file looks something like

Quote:

something=234
blabla=io
ServerRoot=C:Server

i need to change c:server

View 2 Replies

Read And Write Specific Line From Text File

Jul 26, 2009

I have two part in text file. Let say Part 1 and part 2. I want to write part2 in different file and part 1 in different file.

View 5 Replies

Searching A Text File Then Deleting That Specific Line?

Mar 15, 2012

I know how to search a text file for a specific line, but what I don't know is then how to delete that line?My text file is set up as such:

021,Donovan,56 Eynesford Crescent,Bexley,SE5 1TR,09/08/1967,13 March 2012,Bronze
062,Fredrikson,6 Freil Road,Gravesend,GR9 TRB,12/06/1995,13 March 2012,Silver

So I know how to search for the 3 character integer at the beginning of each line, but how do I then delete this line?

I'm currently using this code

Imports System.IO
Public Class Form6
Private Sub SearchBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SearchBtn.Click

[code].....

View 3 Replies

StreamReader - Reading Specific Line In Text File

Oct 15, 2011

I am currently writing a Login Script, and I am having trouble making StreamReader read a specific line in a text file. This is what I have so far (not the entire script, just the reader lines):
Dim path As String = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
Dim file As String = (path + "LogDat.txt")
Dim sr As New IO.StreamReader(file)
Dim line1 As String = sr.ReadLine(1) '' Supposed to read line 1
Dim line4 As String = sr.ReadLine(4) '' Supposed to read line 4
Dim line9 As String = sr.ReadLine(9) '' Supposed to read line 9

View 2 Replies

VS 2008 Edit Specific Line Of Text In A File?

Apr 30, 2009

I am trying to make the code edit the a line in a text file, but it ends up deleting all the text and add the line at the begging of the file.

Dim FILE_NAME As String = "config.conf"
Dim i As String
Dim Text(90) As String

[Code].....

View 3 Replies

VS 2008 Read Specific Line/text In .txt File?

Oct 20, 2010

I need to read one specific line of a .txt file.. How do I do it?I don't know what item will be there so I can't search for a specific letter... It will be a textbox text.But I know that it will be the 3 line.Originally Posted by ExampleLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla rutrum risus et ante tempus pharetra. Integer lacus felis, interdum non elementum in, egestas et ante. Aliquam eget nulla sed lectus accumsan congue at dapibus massa. Etiam nisi arcu, vulputate nec venenatis sed, fringilla nec ipsum. Duis quam lectus, venenatis sit amet faucibus ut, eleifend at tortor. Proin dignissim he

View 5 Replies

VS 2010 Read Specific Line Out Of A Text File?

Jun 28, 2010

Okay, so I've been looking on the web for a way to read only ONE line out of a text file. Recently I've gotten by by creating separate text file for each line (such as a text file named, "Username", another named "Password", instead of creating a single text file with both the user name and password.) Now I am faced with having to do this. I want a quick and easy way, VB won't let me do open file as input #1 for some reason. I just need the second line of text out of this text file. What is the quickest and easiest (and painless) way of doing this?

View 8 Replies

Delete Specific Line In Text File Using Console Application

Jan 15, 2012

I am writing a program that manipulates text file using console application. What I want to do is to delete 1 specific line based on the ID entered by the user.[code]My program should delete the line with the ID DR-02, but my program deletes items from DR-02 to DR-04 instead of DR-02 only.[code]

View 3 Replies

File I/O And Registry :: Replacing Text On Specific Line Number?

Oct 2, 2011

I am trying to figure out how to replace text in a text file on a specific line number. (for testing, line number 4).

View 6 Replies

Streamreader - Text File - To Read Into A Listview - Read From A Specific Line In That File

Mar 11, 2010

I have a txt file that I need to read into a listview, but I need to read from a specific line in that file. Below is a sample of the txt file to read,

6400,3200,2,95.5,84,76.6,0
1,2,-20,15,0,0,0,"NO",0,0
TOTAL GPM= 6400 HWT= 95.5 CWT= 84.0 IWBT= 76.6 ALTITUDE= 0

CODE]...

View 1 Replies

Sql :: Find A Specific Line Of Text In A Text Document And Insert The Next 37 Lines Of Text Into A Database?

Feb 5, 2011

I have an SQL database, and 50 text files, and Visual Basic 2010 Premimum,I need to find a specific line of text in the text files and then take the next 37 lines of text and save them in my database. I need advice as to point me in the right direction

View 2 Replies

Go To Specific Line In Text?

Jun 6, 2011

I'm using DevExpress.XtraRichEdit (2010 2.8) My problem is, this control does not have some basic functionality as does the Standard RichTextbox Control that comes with VB.NET (2010). However it does have functions that the standard RichTextbox does not have. With that being said, I'm trying to create a procedure to go to a specific line in the control. The control does not have the same procedure as "Richtextbox.GotoLine" The procedure below works with a standard Richtextbox. Basically, I'm trying to create a procedure to go to a specific line in the richtext control.

If txtLine.Text <> "" Then
Dim MyText As MainForm.RichTextBox.Text
If MyText IsNot Nothing Then

[Code]....

how to go to a line of text in a regular textbox and maybe I can tweak it to work.

View 7 Replies

FCL For A Method That Will Allow To Erase A Line Of Text From A Text File And Replace It With Another Line Of Text

Dec 19, 2008

I've been looking through the FCL for a method that will allow me to erase a line of text from a text file and replace it with another line of text. Neither the StreamReader nor StreamWriter have a method for replacing or removing Text from a text file, as does the string object. Are there any available methods for erasing just certain lines of text from a file, and then replacing them with others?

In my code, I'd like to locate a certain line in the text file, and then at that point in the text file, use a For...Next Loop to replace each successive line of the text file with new text:

Dim user_data_file As String = "user_data.txt"
edit_input = New StreamReader(user_data_file)
Dim edit_line As String = edit_input.ReadLine

[CODE]...

However, I can't find any methods that will allow me to do this.

View 4 Replies

Get A Specific Line Of Text From A RichTextBox?

Apr 26, 2009

How do I get a specific line of text from a RichTextBox? And what is the string array control for? Can I use it to alphabeticalize the lines?

View 2 Replies

Get A Specific Words From Text Line

May 23, 2012

i am trying programming a program that open a txt file then get specfic data from each line then put the data1 in a textbox1 and data2 in textbox2.[code]and for each time i don't now the username or the password i want the programe to search in line 1 the word between "user=" to "" and the word between "password=" to "".I created the text reader and i hope that same one can help complete the project.[code]

View 14 Replies

Get Specific Text And Read Line From Web?

Feb 13, 2011

if i can make a prog that connects a website read each text below a line containing "3-letter words", "4-letter words", "5-letter words", "6-letter words"

leyend * = comment (ignore it)
e.g
3-letter words
*aby, abi, bay, bai, babi, ...

what is in line * i need to make the prog read that and output to notepad.for example

Imports System.Net
Imports System.IO
Dim req As System.Net.WebRequest = System.Net.WebRequest.Create("http:www.a2zwordfinder.com/scrabble.html")

[code]....

View 3 Replies

How To Insert Text After Specific Line

Aug 13, 2009

I have a lines of text that need to be enter in different file after the specific line. This is the file that I need to insert the particular lines.

------------------------------------------------------------------------------
AGILENT 3070 FIXTURE WIRING REPORT Sat Mar 07, 2009 06:43:05 PM
/var/hp3070/boards/Celestica/wbf303/fixture/wires
------------------------------------------------------------------------------

Fixture Type : Agilent SimPlate Express
Fixture Size : Bank 2
Fixture Part Number : 44200S
Top Probes Allowed : Enabled
Autofile : 28
Units : English
Wiring Method : Automatic
[Code] .....

This code insert the new lines but at the beginning of the file, not at the place that I want?

View 3 Replies

Change Value Of Specific Line Of Text In A Textbox?

Dec 29, 2009

How do you change the text of a line in a textbox by integer?

View 4 Replies

Count Occurance Of A Specific Number & Specific String In Text File Using Vb8?

Dec 13, 2010

i am a beginner in vb8 i have a text file named alarm.txt,sample alarm.txt file is shown below

can someone help me to read the alarm.txt file and extract data.for eg

[Code]...

View 1 Replies

VS 2008 Reading Text File Line By Line - Put Into Text Boxes

Sep 21, 2009

Basically what I'm trying to do is read a text file line by line. After each line is read, it will put each line into a separate text box. I've been trying to do this for a while and so far I haven't been able to. I tried using a for loop, but that just put all my lines in to one textbox.

View 8 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved