private static void DynamicDictionaryChangedCallback(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
ExtendedGauge extendedGauge = dependencyObject as ExtendedGauge;
if (e.NewValue is DynamicDictionary)
{
extendedGauge.LoadDynamicDictionary();
extendedGauge.RegisterDynamicDictionaryDataChangedEvent();
}
}
when DynamicDictionary property changes LoadDynamicDictionary method is called, which parses DynamicDictionary values and creates a RadialGauge.
private void LoadDynamicDictionary()
{
try
{
InitWithDefaults();
if (this.DynamicDictionary != null)
{
// parse gauge parameters from the DynamicDictionary
ParseGaugeParams();
}
// create a new gauge
this.Content = CreateRadialGauge();
}
catch { } // ignore exception
}
CreateRadialGauge method is listed below:
private RadialGauge CreateRadialGauge()
{
// Create Needle
Needle needle = new Needle();
needle.Name =
"needle";
needle.Foreground =
new SolidColorBrush(Colors.Yellow);
needle.Background =
new SolidColorBrush(Colors.Yellow);
needle.IsAnimated =
true;
needle.Duration =
new Duration(TimeSpan.FromSeconds(2));
needle.Value =
this.value;
// Create RadialScale
RadialScale radialScale = new RadialScale();
radialScale.Min =
this.minValue;
radialScale.Max =
this.maxValue;
radialScale.Indicators.Add(needle);
int sliceCount = this.sliceColors.Count;
double sliceLength = (this.maxValue - this.minValue) / sliceCount;
this.sliceColors.ToList().ForEach(slicePair =>
{
radialScale.Ranges.Add(
new RadialRange
{
Min = slicePair.Key * sliceLength,
Max = (slicePair.Key + 1) * sliceLength,
StartWidth = 0.05,
EndWidth = 0.05,
Background =
new SolidColorBrush(slicePair.Value)
});
});
// Create RadialGauge
RadialGauge radialGauge = new RadialGauge();
radialGauge.Items.Add(radialScale);
return radialGauge;
}
When I created the RadialGauge and assign it to the content property of the ExtendedGauge (ContentControl), I ran into an infinite loop. Is this a bug in RadGauge or am i doing something wrong?
Thanks,
Erkan
[2010-08-03 10:23:47,802] [ERROR] [10] [88] - System.InvalidOperationException: UIElement.Measure(availableSize) cannot be called with NaN size.
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at Telerik.Windows.Controls.Gauges.IndicatorBase.MeasureOverride(Size availableSize)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at Telerik.Windows.Controls.Gauges.IndicatorBase.Telerik.Windows.Controls.Gauges.IGaugeIndicator.Measure(Size )
at Telerik.Windows.Controls.Gauges.IndicatorList.MeasureOverride(Size availableSize)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Canvas.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at Telerik.Windows.Controls.Gauges.RangedControl.MeasureOverride(Size availableSize)
at Telerik.Windows.Controls.Gauges.RadialScale.MeasureOverride(Size availableSize)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at Telerik.Windows.Controls.Gauges.GaugeBase.MeasureOverride(Size availableSize)
at Telerik.Windows.Controls.Gauges.RadialGauge.MeasureOverride(Size availableSize)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Border.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Border.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Border.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Page.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Border.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Control.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Decorator.MeasureOverride(Size constraint)
at System.Windows.Documents.AdornerDecorator.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Controls.Border.MeasureOverride(Size constraint)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.Window.MeasureOverrideHelper(Size constraint)
at System.Windows.Window.MeasureOverride(Size availableSize)
at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
at System.Windows.UIElement.Measure(Size availableSize)
at System.Windows.ContextLayoutManager.UpdateLayout()
at System.Windows.UIElement.UpdateLayout()
at System.Windows.Interop.HwndSource.SetLayoutSize()
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)
at System.Windows.Window.SetRootVisual()
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)
at System.Windows.Window.CreateSourceWindowImpl()
at System.Windows.Window.SafeCreateWindow()
at System.Windows.Window.ShowHelper(Object booleanBox)
at System.Windows.Window.Show()
at System.Windows.Window.ShowDialog()
at Telerik.Windows.Controls.RadWindowPopup.WindowPopupWindowFactory.WindowPopupWindowImpl.OpenPopup()
at Telerik.Windows.Controls.RadWindowPopup.WindowPopup.Open(Boolean isModal)
at Telerik.Windows.Controls.RadWindow.ShowWindow(Boolean modal)
at Telerik.Windows.Controls.RadWindow.ShowDialog()
at Telerik.Windows.Controls.RadWindow.ConfigureModal(RadAlert content, DialogParameters dialogParams)
at Telerik.Windows.Controls.RadWindow.Alert(DialogParameters dialogParameters)
at Utility.Mvvm.MessageBoxUtility.ShowAlertDialog(String content, Window ownerWindow)
<
telerik:RadGridView
Name
=
"radgrid"
Margin
=
"2,2,2,2"
IsScrolling
=
"True"
ScrollMode
=
"Deferred"
DataLoadMode
=
"Synchronous"
ItemsSource="{Binding .Value,
UpdateSourceTrigger
=
PropertyChanged
}"
EnableColumnVirtualization
=
"True"
EnableRowVirtualization
=
"True"
MaxHeight
=
"500"
MaxWidth
=
"700"
FrozenColumnCount
=
"1"
IsFilteringAllowed
=
"False"
ShowGroupPanel
=
"False"
RowDetailsVisibilityMode
=
"Collapsed"
AutoGeneratingColumn
=
"AutoGeneratingColumnEvent"
telerik:StyleManager.Theme
=
"Summer"
EditTriggers
=
"CellClick"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
IsReadOnly
=
"True"
DataMemberBinding
=
"{Binding RowHeader}"
CellStyle
=
"{StaticResource RowHeaderStyle}"
Header
=
""
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
System.InvalidOperationException: Root AdornerLayer Not Found. Please make sure that your root visual is Window or other element that has an adorner layer. Alternatively, wrap your root panel in an <
AdornerDecorator
> element.
at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OpenPopup()
at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.StartDragging()
at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.TryStartDrag(IMouseEventArgs e)
at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OnTrackedElementMouseMoveInternal(IMouseEventArgs e)
at Telerik.Windows.Controls.DragDrop.RadDragAndDropManager.OnCoverRectangleMouseMove(Object sender, MouseEventArgs e)
at System.Windows.Input.MouseEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.StartDispatcherInBrowser(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
-----------------------
PresentationHost.exe v4.0.40305.0 built by: Main - C:\WINDOWS\system32\PresentationHost.exe
ntdll.dll v5.2.3790.4455 (srv03_sp2_gdr.090203-1205) - C:\WINDOWS\system32\ntdll.dll
kernel32.dll v5.2.3790.4480 (srv03_sp2_gdr.090321-1244) - C:\WINDOWS\system32\kernel32.dll
ADVAPI32.dll v5.2.3790.4555 (srv03_sp2_gdr.090718-1230) - C:\WINDOWS\system32\ADVAPI32.dll
RPCRT4.dll v5.2.3790.4502 (srv03_sp2_gdr.090424-1503) - C:\WINDOWS\system32\RPCRT4.dll
Secur32.dll v5.2.3790.4530 (srv03_sp2_gdr.090615-1611) - C:\WINDOWS\system32\Secur32.dll
USER32.dll v5.2.3790.4033 (srv03_sp2_gdr.070228-0030) - C:\WINDOWS\system32\USER32.dll
GDI32.dll v5.2.3790.4396 (srv03_sp2_gdr.081022-1212) - C:\WINDOWS\system32\GDI32.dll
ole32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\ole32.dll
msvcrt.dll v7.0.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\msvcrt.dll
OLEAUT32.dll v5.2.3790.4202 - C:\WINDOWS\system32\OLEAUT32.dll
mscoree.dll v4.0.31106.0 (Main.031106-0000) - C:\WINDOWS\system32\mscoree.dll
SHLWAPI.dll v6.00.3790.4603 (srv03_sp2_gdr.091015-1453) - C:\WINDOWS\system32\SHLWAPI.dll
WININET.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\WININET.dll
CRYPT32.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CRYPT32.dll
MSASN1.dll v5.2.3790.4584 (srv03_sp2_gdr.090904-1300) - C:\WINDOWS\system32\MSASN1.dll
urlmon.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\urlmon.dll
VERSION.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\VERSION.dll
SHELL32.dll v6.00.3790.4751 (srv03_sp2_gdr.100726-0339) - C:\WINDOWS\system32\SHELL32.dll
comctl32.dll v6.0 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
PresentationHost_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationHost_v0400.dll
MSVCR100_CLR0400.dll v10.00.30319.1 - C:\WINDOWS\system32\MSVCR100_CLR0400.dll
PSAPI.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\PSAPI.DLL
MSCTF.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\MSCTF.dll
CLBCatQ.DLL v2001.12.4720.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CLBCatQ.DLL
COMRes.dll v2001.12.4720.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\COMRes.dll
xpsp2res.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\xpsp2res.dll
mlang.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\mlang.dll
wsock32.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\wsock32.dll
WS2_32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WS2_32.dll
WS2HELP.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WS2HELP.dll
mswsock.dll v5.2.3790.4318 (srv03_sp2_gdr.080620-1216) - C:\WINDOWS\system32\mswsock.dll
hnetcfg.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\hnetcfg.dll
wshtcpip.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\System32\wshtcpip.dll
dfshim.dll v4.0.31106.0 (Main.031106-0000) - C:\WINDOWS\system32\dfshim.dll
mscoreei.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
clr.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\clr.dll
RASAPI32.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\RASAPI32.DLL
rasman.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rasman.dll
NETAPI32.dll v5.2.3790.4392 (srv03_sp2_gdr.081016-1620) - C:\WINDOWS\system32\NETAPI32.dll
TAPI32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\TAPI32.dll
rtutils.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rtutils.dll
WINMM.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WINMM.dll
rdpsnd.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\rdpsnd.dll
WINSTA.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WINSTA.dll
msv1_0.dll v5.2.3790.4587 (srv03_sp2_gdr.090910-1205) - C:\WINDOWS\system32\msv1_0.dll
cryptdll.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\cryptdll.dll
iphlpapi.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\iphlpapi.dll
sensapi.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\sensapi.dll
USERENV.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\USERENV.dll
msxml3.dll v8.100.1050.0 - C:\WINDOWS\system32\msxml3.dll
msi.dll v3.1.4000.4042 - C:\WINDOWS\system32\msi.dll
actxprxy.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\actxprxy.dll
SXS.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\SXS.DLL
PresentationHostProxy.dll v4.0.31106.0 built by: Main - C:\WINDOWS\system32\PresentationHostProxy.dll
mscorlib.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\mscorlib\4ff1f12a08d455f195ba996fe77497c6\mscorlib.ni.dll
culture.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\culture.dll
nlssorting.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\nlssorting.dll
System.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System\161c6f80ad93b0505054d244f1c6243c\System.ni.dll
WindowsBase.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\WindowsBase\f1f3a74eb37b27b7d05b8ffa941f8473\WindowsBase.ni.dll
rsaenh.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\rsaenh.dll
PresentationCore.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationCore\7a1eeb425f9318f432afead4b2da965a\PresentationCore.ni.dll
PresentationFramework.ni.dll v4.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationFramewo#\8357ade60159c25ee88db0aab8686e6d\PresentationFramework.ni.dll
wpftxt_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\wpftxt_v0400.dll
wpfgfx_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\wpfgfx_v0400.dll
PresentationNative_v0400.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationNative_v0400.dll
System.Xaml.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Xaml\d85a3d6ed5bb77f5603e098cccf60bfa\System.Xaml.ni.dll
System.Deployment.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Deployment\0778748cd9700240f093adfc5dfc5750\System.Deployment.ni.dll
shfolder.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\shfolder.dll
mshtml.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\mshtml.dll
SHDOCVW.dll v6.00.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\SHDOCVW.dll
CRYPTUI.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\CRYPTUI.dll
WINTRUST.dll v5.131.3790.4642 (srv03_sp2_gdr.091223-1236) - C:\WINDOWS\system32\WINTRUST.dll
imagehlp.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\imagehlp.dll
WLDAP32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WLDAP32.dll
msls31.dll v3.10.349.0 - C:\WINDOWS\system32\msls31.dll
System.Configuration.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Configuration\ac2cd19f2159d48684e17cbdecfaa3b7\System.Configuration.ni.dll
System.Xml.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Xml\2d7c29ad77c15abfa6a8fe6d24840a91\System.Xml.ni.dll
msimtf.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\msimtf.dll
UxTheme.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\UxTheme.dll
IMM32.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\IMM32.DLL
winhttp.dll v5.2.3790.4584 (srv03_sp2_qfe.090904-1300) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.WinHTTP_6595b64144ccf1df_5.1.3790.4584_x-ww_FE3453F4\winhttp.dll
jscript.dll v5.6.0.8837 - C:\WINDOWS\system32\jscript.dll
ImgUtil.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\ImgUtil.dll
pngfilt.dll v5.2.3790.4696 (srv03_sp2_gdr.100419-1942) - C:\WINDOWS\system32\pngfilt.dll
System.Security.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Security\0f2c177d8261d29f86d89095eef16727\System.Security.ni.dll
cryptnet.dll v5.131.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\cryptnet.dll
NTDSAPI.DLL v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\NTDSAPI.DLL
DNSAPI.dll v5.2.3790.4318 (srv03_sp2_gdr.080620-1216) - C:\WINDOWS\system32\DNSAPI.dll
mshtmled.dll v6.00.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\mshtmled.dll
clrjit.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\clrjit.dll
System.Drawing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Drawing\2fe09cc54a8390b20e380239db34228f\System.Drawing.ni.dll
System.Windows.Forms.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Windows.Forms\f3cdd09fc0acc85c7febbd2e2ef9c4e5\System.Windows.Forms.ni.dll
Cabinet.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\Cabinet.dll
gdiplus.dll v5.2.6001.22319 (vistasp1_ldr.081126-1506) - C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6001.22319_x-ww_F0B4C2DF\gdiplus.dll
PresentationFramework.Classic.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\PresentationFramewo#\340df2dd99f470883c9a7834a1533f8a\PresentationFramework.Classic.ni.dll
System.Core.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Core\85693dfd9ba4905b0fd947fdb51446d5\System.Core.ni.dll
d3d9.dll v5.3.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\d3d9.dll
d3d8thk.dll v5.2.3790.0 (srv03_rtm.030324-2048) - C:\WINDOWS\system32\d3d8thk.dll
WindowsCodecs.dll v6.0.5840.16388 (winmain(wmbla).061024-1209) - C:\WINDOWS\system32\WindowsCodecs.dll
System.Data.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Data\c12e10c218be4be353975af6abb072d9\System.Data.ni.dll
System.Data.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
System.ServiceModel.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel\40f4f298c3c655b834c73b5046a9cd0b\System.ServiceModel.ni.dll
System.Runtime.DurableInstancing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Runtime.Dura#\591cc2015a0165ede73d3e6770e0e7c2\System.Runtime.DurableInstancing.ni.dll
SMDiagnostics.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\SMDiagnostics\b420437eca1d1aec1a8bf23cc5173661\SMDiagnostics.ni.dll
System.Transactions.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Transactions\40ab9da3eafd6bd1cbc6695ba406975a\System.Transactions.ni.dll
System.Transactions.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
System.IdentityModel.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.IdentityModel\81558b32b261e911f8f822f1de63fdca\System.IdentityModel.ni.dll
System.WorkflowServices.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.WorkflowServ#\c78cd3b6665dfbfb79a089860c4b5657\System.WorkflowServices.ni.dll
System.ServiceModel.Web.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\693efbadb4cca18d1a0fe24a355d7fba\System.ServiceModel.Web.ni.dll
System.ServiceModel.Discovery.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\589e9eded9e383f4b7dfa4c66aa5c9bf\System.ServiceModel.Discovery.ni.dll
System.ServiceModel.Activities.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\67c54ed5743b27d8e8570a7688de93ae\System.ServiceModel.Activities.ni.dll
System.Activities.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Activities\1f1416d0bd44f4f4b7b447dd46100cb2\System.Activities.ni.dll
Microsoft.VisualBasic.Activities.Compiler.ni.dll v10.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\Microsoft.VisualBas#\f4e162e7a860c3577fbb3455fc1349a5\Microsoft.VisualBasic.Activities.Compiler.ni.dll
System.Activities.DurableInstancing.ni.dll v4.0.30319.1 - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Activities.D#\04bf5714cef2ce3fc97d55c9843b36f0\System.Activities.DurableInstancing.ni.dll
System.ServiceModel.Routing.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\82ed1ab8f0885159082e80a036ff644b\System.ServiceModel.Routing.ni.dll
System.ServiceModel.Channels.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.ServiceModel#\eeae22dcbdfe5fbe6ee7aa8810c8d330\System.ServiceModel.Channels.ni.dll
System.Runtime.Serialization.ni.dll v4.0.30319.1 (RTMRel.030319-0100) - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Runtime.Seri#\30ed505f7ea7d6139128d4a6d9981dc0\System.Runtime.Serialization.ni.dll
System.Numerics.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\System.Numerics\be70c34efd115166a2710acac3346bfa\System.Numerics.ni.dll
WtsApi32.dll v5.2.3790.3959 (srv03_sp2_rtm.070216-1710) - C:\WINDOWS\system32\WtsApi32.dll
UIAutomationProvider.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\UIAutomationProvider\b56a80a51f412ce3832eddecb9bf1580\UIAutomationProvider.ni.dll
Accessibility.ni.dll v4.0.30319.1 built by: RTMRel - C:\WINDOWS\assembly\NativeImages_v4.0.30319_32\Accessibility\46c8b155e6fcd5696ffa15a67824ebab\Accessibility.ni.dll
diasymreader.dll v10.0.30319.1 built by: RTMRel - C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll