Hi,
Anyone know how to retrieve the actual table value after these steps? New to vb and finding it difficult to figure this out?
Dim dbs As Database
Dim rst As Recordset
Dim strSQL As String
Dim strRequestNo As String
Dim retVal
Dim checker As Integer
Dim ReqNo, stDocName As String
Dim stLinkCriteria As String
Dim imvProject As String
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset("tblFisSection", dbOpenDynaset)
strSQL = "Select ivmProject from tblFISSection where RequestNo =" & RequestNo
Set rst = dbs.OpenRecordset(strSQL)
Any idea how I retrieve the ivmProject value?
Mark.
Anyone know how to retrieve the actual table value after these steps? New to vb and finding it difficult to figure this out?
Dim dbs As Database
Dim rst As Recordset
Dim strSQL As String
Dim strRequestNo As String
Dim retVal
Dim checker As Integer
Dim ReqNo, stDocName As String
Dim stLinkCriteria As String
Dim imvProject As String
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset("tblFisSection", dbOpenDynaset)
strSQL = "Select ivmProject from tblFISSection where RequestNo =" & RequestNo
Set rst = dbs.OpenRecordset(strSQL)
Any idea how I retrieve the ivmProject value?
Mark.