Re: Why is my program loading stuff from ...\Microsoft Shared\Web Folders\...
Most of those DLLs are just standard Windows things (VERSION, the SHXXXXX
DLLs, MYDOCS). You may be using some SDK functionality that needs these to
load for your program. This links might be interesting to you:
http://www.liutilities.com/products/wintaskspro/dlllibrary/shdocvw/
http://www.auditmypc.com/process/shfolder.asp
http://www.auditmypc.com/process/mydocs.asp
The SharePoint DLLs are a little more interesting (PKMWS, MSONSEXT,
NSEXTINT) It could be you are accessing something that is causing an Office
component to load as an OLE component. That could load this code. Is your
program doing anything to talk to an Office program?
The program that Ajay reference (Dependency Walker) is useful. You can get
it free here: http://www.dependencywalker.com/
Tom
"Harvey" <harveyab@juno.com> wrote in message
news:1172913362.566264.16540@31g2000cwt.googlegroups.com...
One of the programs I am developing is loading a lot of stuff. Here is
part of the list that has me puzzled.
Loaded 'C:\WINDOWS\SYSTEM\VERSION.DLL', no matching symbolic
information found.
Loaded 'C:\WINDOWS\SYSTEM\RPCRT4.DLL', no matching symbolic
information found.
Loaded 'C:\Program Files\Common Files\Microsoft Shared\Web Folders
\PKMWS.DLL', no matching symbolic information found.
Loaded 'C:\Program Files\Common Files\Microsoft Shared\Web Folders
\MSONSEXT.DLL', no matching symbolic information found.
Loaded 'C:\WINDOWS\SYSTEM\SHFOLDER.DLL', no matching symbolic
information found.
Loaded 'C:\Program Files\Common Files\Microsoft Shared\Web Folders
\1033\NSEXTINT.DLL', no matching symbolic information found.
Loaded 'C:\WINDOWS\SYSTEM\SHDOCVW.DLL', no matching symbolic
information found.
Loaded 'C:\WINDOWS\SYSTEM\MYDOCS.DLL', no matching symbolic
information found.
What are the three in C:\Program Files\Common Files\Microsoft Shared
\Web Folders\...
I don't like the sound of that, If you know what I mean. 8-O
TIA,
Harvey