Ver Mensaje Individual
  #12 (permalink)  
Antiguo 04/02/2011, 15:17
alexgonzalez
 
Fecha de Ingreso: enero-2009
Mensajes: 112
Antigüedad: 15 años, 3 meses
Puntos: 0
Respuesta: combo box y textbox

caso resuelto colegas coloco la solucion por si alguien la necesita
private void dtgrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
{

string codAgency;
string agentId;
string agentSeq;
string token;
string agencyName;
string cadena;

codAgency = this.dtgrid.Rows[e.RowIndex].Cells[0].Value.ToString();
agentId = this.dtgrid.Rows[e.RowIndex].Cells[1].Value.ToString();
agentSeq = this.dtgrid.Rows[e.RowIndex].Cells[2].Value.ToString();
token = this.dtgrid.Rows[e.RowIndex].Cells[3].Value.ToString();
agencyName = this.dtgrid.Rows[e.RowIndex].Cells[5].Value.ToString();
txtptx.Text = this.dtgrid.Rows[e.RowIndex].Cells[5].Value.ToString();