You can certainly create the data access objects in design view. It depends whether you want the variables to have Form level scope or not. I use either method, depending on the circumstances. Certainly it is a laborious execise creating a DataAdapter with four long commands in code.
What I meant was, if you want to get a single value from the database, put it in a control and not update the database again, you can use OleDbCommand.ExecuteScalar() to retrieve that value. If you want one or several rows of data from the database, the fields of which you want to put in controls and not update the database again, you can use OleDbCommand.ExecuteReader(). If you want to update the data you retrieve from the database, then you should use an OleDbDataAdapter and a DataSet, or a DataTable if you are not retrieving multiple tables. How you create the data access components is up to you.