ActiveXperts Knowledge Base Article 6650200
Our mission at ActiveXperts Software is to deliver high quality Network Monitoring solutions and Windows Development components.
Our goal is to supplement these solutions with timely support resources that can help at many different levels.
The first thing you want to do is try to find the answer to your problem in the Knowledge Base.
If you cannot find an answer to your question in our Knowledge Base, or if you need additional information or assistance, please use our Contact Support form.
Q6650200 - Can I use the Configration API in CSharp.NET?
Sure. To write a .NET based console application, please use the following steps:
- Launch Microsoft Visual Studio;
- Create a new '.NET Console Project'
- In the Project context menu, choose 'Add->COM Reference...' and 'ActiveXperts Network Monitor Configuration API'
- In your program source code, include the 'ActiveXperts Network Monitor Configuration API' namespace like this:
using AXNMCFGLib; - Declare and create a new Network Monitor Config API object like this:
NMConfig objNMConfig = new NMConfig();
Finally, start writing your program like this:
using AXNMCFGLib;
NMConfig objNMConfig = new NMConfig(); // Create instance of COM Object
Console.WriteLine("ActiveXperts Network Monitor API {0}\nBuild: {1}\nModule: {2}\n",
objNMConfig.Version, objNMConfig.Build, objNMConfig.Module);
Add your functionality using the Configuration API Manual and the Powershelll/VBScript samples included with the software.
Default Folder: C:\ProgramData\ActiveXperts\Network Monitor\Configuration API\
If you cannot find an answer to your question(s) in our Knowledge Base, or if you need additional information or assistance, please contact our Customer Support using our Contact Support Form
