Podrías pasa el valor a otro formulario de cualquier celda que selecciones con este código.
Código vb:
Ver originalPrivate Sub lvDatos_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lvDatos.DoubleClick
Try
If formulario2.Visible = True Then
formulario2.txtNoMesa.Text = lvDatos.Items(lvDatos.FocusedItem.Index).SubItems(0).Text
End If
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Exclamation)
End Try
End Sub
Código C:
Ver originalprivate void lvDatos_DoubleClick(System.Object sender, System.EventArgs e)
{
try {
if (formulario2.Visible == true) {
formulario2.txtNoMesa.Text = lvDatos.Items(lvDatos.FocusedItem.Index).SubItems(0).Text;
}
} catch (Exception ex) {
Interaction.MsgBox(ex.Message, MsgBoxStyle.Exclamation);
}
}