Thank You Fishcake!!

I have succed in retrieving information from the database. However i hope that i can pass the information to the label insead of datagrid. Can it be done by passing information from the database to the label?

Here is how i pass to the datagrid:

objCmd.commandtext = "spDateChecking"
objCmd.CommandType = CommandType.StoredProcedure
objCmd.connection = dbconn

objParam = objCmd.Parameters.Add("RETURN_VALUE", SqlDbType.Int)
objParam.Direction = ParameterDirection.ReturnValue
objCmd.Parameters.Add("@SlotDateID", weekday_value)

Dim myReader As OleDbDataReader
myReader = objCmd.ExecuteReader

If (myReader.HasRows) Then

Dim result As Integer
result = objCmd.Parameters("RETURN_VALUE").Value
dgTicketPrice.DataSource = myReader
dgTicketPrice.DataBind()

End If

'Close the connection object
dbconn.Close()