Buenas tardes a todos y muchas gracias por su ayuda.....
Estoy intentando mostrar el ID del ultimo registro ingresado despues de darle click a el boton de enviar, esto para utilizarlo como numero de reporte o folio.... pero no consigo hacerlo y por eso recurro a su ayuda.
Tengo lo siguiente....
'Este es el pedazo de codigo que utilizo para mostrar el numero ID en un label:
Using Conn As New OleDbConnection(Me.AccessDataSource1.ConnectionStr ing)
Dim Sel As String
Sel = "select max(id) from tablait"
Dim cmd As New OleDbCommand(Sel, Conn)
Conn.Open()
Dim Tabla As New DataTable
Dim Da As New OleDbDataAdapter(cmd)
Da.Fill(Tabla)
Me.lb_reporte.Text = Tabla.Rows(0)("id").ToString
End Using
Me.lb_leyenda.Text = "El numero de reporte es: "
End Sub
Pero me sale este error:
Column 'id' does not belong to table .
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Column 'id' does not belong to table .
Source Error:
Line 31: Dim Da As New OleDbDataAdapter(cmd)
Line 32: Da.Fill(Tabla)
Line 33: Me.lb_reporte.Text = Tabla.Rows(0)("id").ToString
Line 34: End Using
Line 35: Me.lb_leyenda.Text = "El numero de reporte es: "
Muchas gracias