I have a problem that I can't seem to figure out.
This statement gives me a recordset called rsValves
Select * From qryVentilerOchPlatser Where vDelnr LIKE 'DM%' And pId is not Null Order by vDelnr
and this line of could should give me the following printout, right ?
Response.Write rsValves("vID") & " | " & rsValves("vDelnr") & " | " & rsValves("vFabrikat")
Printout: 6070 | DM001 | NAF
but instead I get this
6070 | | NAF
why is the middle column missing ???
Please, help !!
/ Daniel