What are you waiting for, to create a file which will have an UI
which your users will be able to interface with, which *will*
have the capacity for a reference to be added to it ?
I use visual web developer...
I have one file open "/app_code/volume.vb"
The solution explorer window is empty.
There's nothing to "right click" on for adding a reference.
Solution Explorer - right click the project - select Add Reference - on the .Net tab find System.Management, select and press
OK.
Imports statements are not references. They just allow you omitting the namespace names.
Eliyahu
"Imports System.Management"
has already been included....
where else do I need to add it ?
You need to add a reference to System.Management to your project.
Eliyahu
Compiler Error Message: BC30002: Type 'System.Management.ManagementObjectCollection' is not defined.
Source Error:
Code:
Imports System.Management
....
Line 40: Dim moColl As System.Management.ManagementObjectCollection
any help on why the error msg ??