vanillapod
MIS
Hi I've got a page that lists all field names contained within an Access Database table, can anyone tell me how I find the data type of each field as well?
Cheers
Cheers
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for each f in lg.Fields
If f.name<>"ID" Then
Response.Write("<option value=" & f.Name & ">" & f.name & "</option>")
End If
next