Declare and Call Questions

CBG2112

Registered User.
Local time
Today, 06:51
Joined
Aug 4, 2009
Messages
32
I'm trying to create a script that will pull data from a mdb file and display it as a table in an html file. How do i declare access fields of the text and data variety and call it to display in the table? Here are parts of the code that I'm declaring the data types and displaying them. Any help would be appreciated. Thanks.

Code:
SQL = "SELECT ABCExceptions.* " & _
"FROM ABCExceptions " & _
"WHERE REVIEW_FL= FALSE"    

Dim Status As Text
Dim DateReported As Date

PrintLine(1, "<tr>")
PrintLine(1, "<td class='table_detail'>" & Status & "</td><td>" & Date Reported & "</td>")
Printline(1, "</tr>")
 

Users who are viewing this thread

Back
Top Bottom