I am a beginner with Visual Basic.
At the moment I am having a problem with my program where anytime I try and add to a row in my database visual studio flags up an "Illegal characters in path" error.
Here is a snippet of the relevant areas of my code:
Dim customerAdapter As New CustomerDetailsTableAdapters.tblCustomerDetailsTableAdapter
Dim customerTable As CustomerDetails.tblCustomerDetailsDataTable
Dim customerRow As CustomerDetails.tblCustomerDetailsRow
Dim customerDataSet As CustomerDetails
Private Sub btnNext_Click(sender As Object, e As EventArgs) Handles btnNext.Click
customerAdapter.AddCustomer(Forename:="test", Surname:="test",
HouseNumber:="test", StreetName:="test",
Postcode:="test", Email:="test",
Telephone:="test", Mobile:="test",
PreferredContact:="test")
End Sub
I have checked that the data types are correct.
I am working in Visual Studio 2012 Ultimate and I am using .NET Framework 4. Another thing you should know is that I have one column in the table that is auto incremental by one and currently the table is empty upon start up.