PDA

View Full Version : listing fields in a databse problem


Bluemonkey
03-24-2003, 04:51 PM
i want to do this "For Each fld In rs.Fields " but exclude one flied how can i do this?

thanks for the help

raf
03-24-2003, 06:23 PM
For each field in rswhatever
if field <> "variableyoudontwanause" then
your code
end if
next


something like that?

whammy
03-26-2003, 01:17 AM
what raf said - I use the same thing all the time. ;-)

Bluemonkey
03-26-2003, 08:45 AM
thank you very much for the help