I am currently working with a systems inventory script & database. I am
running into a problems where computers have multiple video cards (for
dual displays) an I am unable to place them in an access table
correctly. Any help would be greatly appreciated, thank you in advance.

The current section of my script that deals with video is:

Set colVid = objCallWMI.ExecQuery ("SELECT * FROM
Win32_VideoController")

For Each objVid In colVid
recADO.Fields("VideoCard1").Value = objVid.Name
(The following line is not in my code but a sample of what I am trying
to do)
recADO.Fields("VideoCard2").Value = objVid.Name
recADO.Fields("VideoRAM").Value = Int(objVid.AdapterRAM/1048576) & "MB"
recADO.Fields("VideoDAC").Value = objVid.AdapterDACType
Next