29/08/2012, 10:19
|
| | Fecha de Ingreso: febrero-2012 Ubicación: San juan de luriguashington
Mensajes: 39
Antigüedad: 12 años, 9 meses Puntos: 2 | |
Respuesta: Consulta con variable dentro del IN por eso desde el formulario hasteun for ps
vb net
dim Codigos as string
Codigos = ""
For Each row1 As DataGridViewRow In MIDATAGRID.Rows
If row1.Cells("MICHEKBOX").Value = True Then
'RECUPERO EL VALOR Y AUMENTOUNA COMA
Codigos = Codigos + RECUPEROELVALOR + ","
End If
Next
'TODA LA CADENA Y QUITO LA ULTIMA COMA
Codigos = Mid(Codigos, 1, Codigos.Length - 1) |