Reputation: 73
It's a long time that I have given up MS platform and was working on open source, now I'm in a situation where I need user Hardware info. All hardware IDs of all devices of system including BIOS info. so I decided to go for VB6. It's easy in other languages, but they need dot net framework installed. How can this be done in VB6 alone.
Upvotes: 2
Views: 1910
Reputation: 12700
Use Windows WMI:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa394582(v=vs.85).aspx
There you can query for quite some bit of information. Here is some sort of how-to which happen to be written for Visual Basic Script
http://msdn.microsoft.com/en-us/library/aa394587%28VS.85%29.aspx
Upvotes: 3