Click here to Skip to main content
15,885,278 members

Comments by Vasily Tserekh (Top 13 by date)

Vasily Tserekh 24-Nov-17 11:29am View    
It didn't work :(
Vasily Tserekh 24-Nov-17 11:25am View    
static public int executeSQL(string sqlQuery)
{
OleDbConnection connection = new OleDbConnection(connectionString);
connection.Open();
OleDbCommand command = new OleDbCommand(sqlQuery, connection);
return command.ExecuteNonQuery();
}

static public object executeScalar(string sqlQuery)
{
OleDbConnection connection = new OleDbConnection(connectionString);
connection.Open();
OleDbCommand command = new OleDbCommand(sqlQuery, connection);
return command.ExecuteScalar();
}
Vasily Tserekh 20-Apr-17 13:29pm View    
it is not listed in the desigh mode property tab
also the tabs are filled programmatically
Vasily Tserekh 20-Apr-17 11:31am View    
I tried to look at the properties on the visual studio component design mode
but that event is not listed
Vasily Tserekh 20-Apr-17 11:30am View    
the issue is that the tabs are filled on runtime based on database information
there is nothing I can do in design mode