blah blah blah is here! blah blah » Close

1
votes
2 answers

Problem with int.Parse

My code: private void tbPagos_Click(object sender, EventArgs e) { iPosact = dgView.CurrentRow.Index; pId = tc.Rows[iPosact]["id"].ToString(); pNombre = tc.Rows[iPosact]["nombre"].ToString(); pSaldo = int.Pars ...

2
votes
2 answers

Syntax problem in C#

I'm using Visual Studio C# 2010 Express. My code: string clave = txtBuscar.Text.Trim(); dta = new OleDbDataAdapter("Select * from cursos where nombre LIKE '" + clave + "%' || acudiente LIKE '" + clave + "%' || ...

Feedback