Steve Welborn <[EMAIL PROTECTED]> wrote: > Hello everyone. I am in the process of writing an Extension to the Windows > Shell > > My environment will be C# and Windows 2003 and up.
You shouldn't write in-process extensions to the shell in managed code, because it causes the shell to load a specific version of the .NET runtime into the shell process. This creates an ordering dependency if there are multiple shell extensions that target different .NET runtimes. For example, if there are two shell extensions, E_11 (targeting 1.1) and E_20 (targeting 2.0) and E_11 gets loaded before E_20, then E_20 will fail to load because you can't have more than one version of the .NET runtime in a single process. > and although I have majority of it complete I am having problems being able > to view the contents of an .iso file. With my extension I will be working > with iso files and a few other formats. > > Can someone set me in the right direction as far as how to view/output the > contents of an iso file? I'm not 100% sure what your difficulty is. Is it the ISO format itself? If I was interested in that, I'd look at the ISO9660 file system driver in Linux. -- Barry -- http://barrkel.blogspot.com/ =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com