Quote Originally Posted by Ram2Curious View Post
@phpman

The ID field in the access database is expecting a number. You can use the Integer.Parse Function.

vb.net Code:
  1. Dim labelvalue As String =label3.Text
  2. Dim value As Integer = Integer.Parse(label3.Text)
Why would you need to parse the contents of a Label? That Label must have been populated using a number in the first place. It's that number that should be being used.