Que tal todos, queria pedirle un favor
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim file As String = "test.csv"
Dim path As String = Application.StartupPath & "\"
Dim ds As New DataSet
Try
If IO.File.Exists(path & file) Then
Dim ConStr As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
path & ";Extended Properties=""Text;HDR=Yes;FMT=Delimited\"""
Dim conn As New OleDb.OleDbConnection(ConStr)
Dim da As New OleDb.OleDbDataAdapter("Select * from " & _
file, conn)
da.Fill(ds, "TextFile")
DataGridView1.DataSource = ds.Tables(0)
End If
Catch ex As Exception
MessageBox.Show(ex.ToString)
End Try
End Sub
Con el codigo anterior puedo traer los datos en una hoja de texto solo que separado por comas como un CSV
Pero en realidad mi objetivo
es poder tener el formulario con
1 caja de texto
1 caja de listview y
1 boton
Ejemplo:
Cuando escribo CR12168250 en textbox1
me salga listview:
de la siguiente manera que centre CG12168250 y la descripcion en la siguiente linea
CG12168250
Cuarto de 6x8 metros por 2.50 metros de altura en los cielorasos...
gracias