private void btnGravarNovosValores_Click_1(object sender, EventArgs e)
{
string descricao;
string textBoxX;
int i = 0;
foreach (Object texto in lstTabelaProdutosPreco.Items)
{
descricao = texto.ToString();
i++;
textBoxX = ("textBox" + i.ToString());
//MessageBox.Show(descricao + " " + textBox);
TabelaAlterarProdutosCalibresValores tabelaAlterarProdutosCalibresValores = new TabelaAlterarProdutosCalibresValores();
tabelaAlterarProdutosCalibresValores.idTabelaPrecos = Convert.ToInt32(lstNome.SelectedValue.ToString().Substring(0, 3));
tabelaAlterarProdutosCalibresValores.idProduto = Convert.ToInt32(descricao.ToString().Substring(0, 4));
tabelaAlterarProdutosCalibresValores.idCalibre = descricao.ToString().Substring(8, 5);
tabelaAlterarProdutosCalibresValores.precoVenda = double.Parse(textBoxX.ToString().Trim());
if (tabelaAlterarProdutosCalibresValores.UpDateDefault())
{
MessageBox.Show(lstNome.SelectedValue.ToString().Substring(0, 3) + descricao.ToString().Substring(0, 4) + descricao.ToString().Substring(8, 5) + textBoxX);
}
}
}