I have a table with one field name "Time (Date + Hour)". Now when I write the code

Code:
strSQL = "SELECT [Time (Date + Hour)] FROM tblName"
    rs.CursorLocation = adUseClient
    rs.Open strSQL, con, adOpenDynamic, adLockOptimistic
    MsgBox rs(Time (Date + Hour))
It shows error code. How can I read the value then?