Step 1: Create your database (you might want to consider Access 2003 file format (Access 2010/2007 can save to the 2003 file format))
Step 2: Include the database in your app's solution
Step 3: Add a new item to the solution, select the Dataset (xsd) item
Step 4: Right click in the designer & select 'Add Table', using the wizard it'll ask you for a connection string, you can create it right here in the wizard
Step 5: Specify the query, there's a query designer available too, you're wanting to create a SELECT query, you'll even use this in the program later
Step 6: Give this a method name, you'll be calling this by name in your vb code
Step 7: In your vb code, declare a TableAdapter and DataTable object of the one's just created in the xsd file, the namespace is the same as the name of your xsd file, makes things easy for ya
Step 8: Use the TableAdapter object to call the select queries method name, passing it the parameters of which the DataTable object is going to be one of them
If you're still needing help by morning (it's 9:40pm EST) I can create a demo app that's similar to what you're needing for the alarm clock app and you can see how it works in code.