Reply to Re: Databinding in Visual Studio
If you don't have an account, just leave the password field blank.
Tried that
Odd. SelectedIndex = -1 gives a blank default, but if I do
And if I try inserting before the

'VB: comboAuthor.Items.Insert(0, "Select author...") comboAuthor.SelectedIndex = 0Does nothing.
Odd. SelectedIndex = -1 gives a blank default, but if I do
comboAuthor.Items.Insert(0, "Select author...") comboAuthor.SelectedIndex = -1then there's no blank, just the 1st name in the database.
And if I try inserting before the
Me.TbAuthorsTableAdapter.Fill(Me.BooksDataSet.tbAuthors)line instead of after, then I end up with an empty combobox.