I need to fix this code== so when I open my filedialog and select a text file, then it shows up in my text box, I then chase the file path open the text file, read the text find certin varibles or letter group in the rows of text that are like tags, the extract the whole row into an excell sheet on my desktop. can anyone tell me were i am going wrong?
Sample of row in a text file:
MK QTY ITEM DESCRIPTION MATERIAL WIEGHT
2 34 145 FB METAL STEEL 100PDS
2 50 146 S METAL STEEL 100PDS
2 36 147 DR METAL STEEL 100PDS
So When I read from this Text File that was open from openfiledialog it will then saerch for FB and DR and send the entire row in its contents to seprate excell sheets.
here is my code:
==========================================================
Public Class Form1
Dim ofd As OpenFileDialog
Dim WithEvents txtFile As TextBox
Dim WithEvents btnOpen As Button
Dim WithEvents btnWriteFile As Button
Const LogFile As String = ""
Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ofd = New OpenFileDialog
ofd.Filter = "Text Files|*.txt|Excel|*.xls"
txtFile = New TextBox
txtFile.Left = 12
txtFile.Top = 24
txtFile.Width = 160
txtFile.ReadOnly = True
Me.Controls.Add(txtFile)
btnOpen = New Button
btnOpen.Text = "..."
btnOpen.Width = 24
btnOpen.Height = Me.txtFile.Height
btnOpen.Left = Me.txtFile.Left + Me.txtFile.Width + 4
btnOpen.Top = Me.txtFile.Top
Me.Controls.Add(btnOpen)
AddHandler btnOpen.Click, AddressOf OpenFileButtonClick
btnWriteFile = New Button
btnWriteFile.Width = 60
btnWriteFile.Text = "Write File"
btnWriteFile.Top = Me.txtFile.Top + Me.txtFile.Height + 6
btnWriteFile.Left = 12
Me.Controls.Add(btnWriteFile)
AddHandler btnWriteFile.Click, AddressOf WriteFileButtonClick
End Sub
Private Sub OpenFileButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs)
Me.txtFile.Text = ""
ofd.ShowDialog()
Me.txtFile.Text = ofd.FileName
End Sub
Private Sub WriteFileButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs)
If Not Me.txtFile.Text.Trim = "" Then
'Read the existing file
Dim FileText As String = ""
FileText = System.IO.File.ReadAllText(Me.txtFile.Text)
'Write to the log file
System.IO.File.AppendAllText(LogFile, FileText)
MessageBox.Show("Text Transfered.")
Else
MessageBox.Show("Please select a file.")
End If
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' do I need to Dim the excel file "C:\ test.xls"?
'and how do i set up this system.IO to write text to the excel
'sheet after it reads for the specified text like FB or DR???
'is there a way to do it using sytem IO?
'and if so were should the code go in this form???????
ofd.ShowDialog()
If Not Me.txtFile.Text.Trim = "" Then
'Read the existing file
Dim FileText As String = ""
FileText = System.IO.File.ReadAllText(Me.txtFile.Text)
'Write to the log file
System.IO.File.AppendAllText(LogFile, FileText)
MessageBox.Show("Text Transfered.")
Else
MessageBox.Show("Please select a file.")
End If
End Sub
End Class
Sample of row in a text file:
MK QTY ITEM DESCRIPTION MATERIAL WIEGHT
2 34 145 FB METAL STEEL 100PDS
2 50 146 S METAL STEEL 100PDS
2 36 147 DR METAL STEEL 100PDS
So When I read from this Text File that was open from openfiledialog it will then saerch for FB and DR and send the entire row in its contents to seprate excell sheets.
here is my code:
==========================================================
Public Class Form1
Dim ofd As OpenFileDialog
Dim WithEvents txtFile As TextBox
Dim WithEvents btnOpen As Button
Dim WithEvents btnWriteFile As Button
Const LogFile As String = ""
Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ofd = New OpenFileDialog
ofd.Filter = "Text Files|*.txt|Excel|*.xls"
txtFile = New TextBox
txtFile.Left = 12
txtFile.Top = 24
txtFile.Width = 160
txtFile.ReadOnly = True
Me.Controls.Add(txtFile)
btnOpen = New Button
btnOpen.Text = "..."
btnOpen.Width = 24
btnOpen.Height = Me.txtFile.Height
btnOpen.Left = Me.txtFile.Left + Me.txtFile.Width + 4
btnOpen.Top = Me.txtFile.Top
Me.Controls.Add(btnOpen)
AddHandler btnOpen.Click, AddressOf OpenFileButtonClick
btnWriteFile = New Button
btnWriteFile.Width = 60
btnWriteFile.Text = "Write File"
btnWriteFile.Top = Me.txtFile.Top + Me.txtFile.Height + 6
btnWriteFile.Left = 12
Me.Controls.Add(btnWriteFile)
AddHandler btnWriteFile.Click, AddressOf WriteFileButtonClick
End Sub
Private Sub OpenFileButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs)
Me.txtFile.Text = ""
ofd.ShowDialog()
Me.txtFile.Text = ofd.FileName
End Sub
Private Sub WriteFileButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs)
If Not Me.txtFile.Text.Trim = "" Then
'Read the existing file
Dim FileText As String = ""
FileText = System.IO.File.ReadAllText(Me.txtFile.Text)
'Write to the log file
System.IO.File.AppendAllText(LogFile, FileText)
MessageBox.Show("Text Transfered.")
Else
MessageBox.Show("Please select a file.")
End If
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' do I need to Dim the excel file "C:\ test.xls"?
'and how do i set up this system.IO to write text to the excel
'sheet after it reads for the specified text like FB or DR???
'is there a way to do it using sytem IO?
'and if so were should the code go in this form???????
ofd.ShowDialog()
If Not Me.txtFile.Text.Trim = "" Then
'Read the existing file
Dim FileText As String = ""
FileText = System.IO.File.ReadAllText(Me.txtFile.Text)
'Write to the log file
System.IO.File.AppendAllText(LogFile, FileText)
MessageBox.Show("Text Transfered.")
Else
MessageBox.Show("Please select a file.")
End If
End Sub
End Class