Добавьте этот код в DataSet.cs:
namespace P.A_DBDataSetTableAdapters
{
public partial class VD_TableAdapter
{
public int CommandTimeout
{
set
{
int i = 0;
while ((i < this.CommandCollection.Length))
{
if ((this.CommandCollection[i] != null))
this.CommandCollection[i].CommandTimeout = value;
i = (i + 1);
}
}
}
}
}
И этот код в Form.cs:
this.vD_TableAdapter.CommandTimeout = 1800;