In the report I cannot as of now report what I need.
using the web interface I can see 2 screens attached to a PC but for another one I can only see one.
This is what I figured I needed in the report builder:
SELECT
dbo.tblComputers.Computername AS Computer,
dbo.tblOperatingsystem.Description,
dbo.tblComputersystem.Manufacturer,
dbo.tblComputersystem.Model,
tblDesktopMonitor.MonitorManufacturer,
tblDesktopMonitor.DeviceID,
tblDesktopMonitor.ScreenWidth,
tblDesktopMonitor.ScreenHeight,
tblDesktopMonitor.Computername
FROM
dbo.tblComputers
INNER JOIN dbo.tblComputersystem ON (dbo.tblComputers.Computername = dbo.tblComputersystem.Computername)
INNER JOIN dbo.tblOperatingsystem ON (dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername)
INNER JOIN tblDesktopMonitor ON (dbo.tblComputers.Computername = tblDesktopMonitor.MonitorManufacturer)
But I am missing parts in order to get results out of it.
Groupe Rodeus