我是WPF的新手。我有WPF应用程序,允许用户将数据库导出为txt文件。数据库具有固定数量的列,但行不受限制。 我的问题是:
我需要导入多个txt文件,需要将它们添加到另一个文件中。
导入所有文件后,我需要对导入的数据进行查询(sql)。
我已经使用了这段导入一个txt文件的代码(但它应该更多),但我无法搜索数据..
Private Sub button1_Click(ByVal sender As System.Object,ByVal e As System.Windows.RoutedEventArgs) '创建OpenFileDialog Dim dlg As Microsoft.Win32.OpenFileDialog = New Microsoft.Win32.OpenFileDialog()
' Set filter for file extension and default file extension
dlg.DefaultExt = ".txt"
dlg.Filter = "Text documents (.txt)|*.txt"
' Display OpenFileDialog by calling ShowDialog method
If (dlg.ShowDialog() = True) Then
'; Open document
Dim filename As String = dlg.FileName
FileNameTextBox.Text = filename
Dim paragraph As Paragraph = New Paragraph()
paragraph.Inlines.Add(System.IO.File.ReadAllText(filename))
Dim document As FlowDocument = New FlowDocument(paragraph)
FlowDocReader.Document = document
End If
End Sub
thx:)