How to Fetch data in C/AL from DotNet ManagementObjectCollection object?
hsnfritz
Member Posts: 3
Hi guys
I am working in NAV-2013 R2 and using sample code to Change DefaultPrinter in C/AL using .net objects from http://www.punky.be/2017/01/31/change-default-printer-from-cal/
I have made some changes. the data types are

Here is the code sample
ManagementObjectSearcher := ManagementObjectSearcher.ManagementObjectSearcher('select * from win32_printer');
ManagementObjectCollection := ManagementObjectSearcher.Get();
ObjectArray := ObjectArray.CreateInstance(GETDOTNETTYPE(Object),1);
Count := ManagementObjectCollection.Count;
varArray := varArray.CreateInstance(ManagementObjectCollection.GetType(), Count);
//***
where varArray is DotNet array of type => System.Array.’mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089′
***//
ManagementObjectCollection.CopyTo(varArray, 0);
//*** On calling this COPYTO function I get error
I get an error message that call is ambiguous between following methods i.e.
=> CopyTo(ManagementBaseObject[], int)
and
=>CopyTo(System.Array, int)
***//
FOR i := 0 TO (Count - 1) DO
BEGIN
ManagementObject := varArray.GetValue(i);
i := i + 1;
IF FORMAT(ManagementObject.GetPropertyValue('Name')) = PrinterName THEN BEGIN
ManagementObject.InvokeMethod('SetDefaultPrinter', ObjectArray);
EXIT;
END;
END;
Can you tell me how to reterive the data from ManagementObjectCollection and fix this error ?
0
Best Answer
-
I fixed it by using enumerators
WITH ManagementObjectCollection DO BEGIN Enumerator := ManagementObjectCollection.GetEnumerator(); WHILE(Enumerator.MoveNext()) DO BEGIN ManagementObject := Enumerator.Current; PrinterNameTmp := FORMAT(ManagementObject.GetPropertyValue('Name')); MESSAGE(PrinterNameTmp); IF PrinterNameTmp = PrinterName THEN BEGIN ManagementObject.InvokeMethod('SetDefaultPrinter', ObjectArray); EXIT; END; END; END;1
Answers
-
instead of:
varArray := varArray.CreateInstance(ManagementObjectCollection.GetType(), Count);
try:
varArray := varArray.CreateInstance(ManagementObject.GetType(), Count);
hope it helps.
Oli
0 -
I already tried it but it didn't worked .. I got same error0
-
I fixed it by using enumerators
WITH ManagementObjectCollection DO BEGIN Enumerator := ManagementObjectCollection.GetEnumerator(); WHILE(Enumerator.MoveNext()) DO BEGIN ManagementObject := Enumerator.Current; PrinterNameTmp := FORMAT(ManagementObject.GetPropertyValue('Name')); MESSAGE(PrinterNameTmp); IF PrinterNameTmp = PrinterName THEN BEGIN ManagementObject.InvokeMethod('SetDefaultPrinter', ObjectArray); EXIT; END; END; END;1
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 328 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
