04/12/2010, 09:08
|
| | Fecha de Ingreso: noviembre-2004 Ubicación: Medellín
Mensajes: 121
Antigüedad: 20 años Puntos: 1 | |
Transicion vb a c sharp En Visual Basic usaba:
Try
objcomando.Connection = objConexion
objcomando.CommandText = "select * from tbl_facturas where carnet ='" & Carnet.Text & "'"
Dim dt As New DataTable
Dim da As New OleDb.OleDbDataAdapter(objcomando)
da.Fill(dt) texImpuesto.Text = CStr(dt.Rows(0).Item("impuestos"))
Catch ex As Exception
MessageBox.Show(Err.Description)
End Try
Lo cambié a C Sharp, excepto la línea en negrilla que no sé como ponerla. ¿Podrían decirme cómo? |