Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. system.storage.schemas.dll

system.storage.schemas.dll

Scheduled Pinned Locked Moved C#
8 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    amal_pro83
    wrote on last edited by
    #1

    hello there, i wonder if anyone has this dll system.storage.schemas.dll , or know link to download it as i need namespace in System.Storage.Explorer:-O

    R 1 Reply Last reply
    0
    • A amal_pro83

      hello there, i wonder if anyone has this dll system.storage.schemas.dll , or know link to download it as i need namespace in System.Storage.Explorer:-O

      R Offline
      R Offline
      Roman Rodov
      wrote on last edited by
      #2

      This namespace and the dll are part of .NET Framework in Windows Codename Longhorn and you cannot get it for other operating systems.

      A 1 Reply Last reply
      0
      • R Roman Rodov

        This namespace and the dll are part of .NET Framework in Windows Codename Longhorn and you cannot get it for other operating systems.

        A Offline
        A Offline
        amal_pro83
        wrote on last edited by
        #3

        i want to use the namespace in a program and when i searched for it...i knew that it i in this dll but when i searched for dll over my pc i couldnt find it so tell me what to do to use namespaces in

        D 1 Reply Last reply
        0
        • A amal_pro83

          i want to use the namespace in a program and when i searched for it...i knew that it i in this dll but when i searched for dll over my pc i couldnt find it so tell me what to do to use namespaces in

          D Offline
          D Offline
          Dave Kreskowiak
          wrote on last edited by
          #4

          What do you want to use the namespace for? It will only work on Longhorn and the WinFS file system... In order to get the .dll, you need to download the Longhorn SDK from Microsoft's MSDN Subscriber Downloads. You can only do that if your an MSDN Subscriber... Oh! A minor problem --> You can't install the Longhorn SDK on a machine that has the .NET Framework SDK installed. This means you can't install the SDK on the same machine as any version of Visual Studio.NET. RageInTheMachine9532

          A 2 Replies Last reply
          0
          • D Dave Kreskowiak

            What do you want to use the namespace for? It will only work on Longhorn and the WinFS file system... In order to get the .dll, you need to download the Longhorn SDK from Microsoft's MSDN Subscriber Downloads. You can only do that if your an MSDN Subscriber... Oh! A minor problem --> You can't install the Longhorn SDK on a machine that has the .NET Framework SDK installed. This means you can't install the SDK on the same machine as any version of Visual Studio.NET. RageInTheMachine9532

            A Offline
            A Offline
            amal_pro83
            wrote on last edited by
            #5

            hi dave, i want this namespace to get internet explorer history, i know how to get instances runnig from ie but only the window title of ie but not full url as i am using only c# ..i ve code for it in c++..but i dont know how to convert or use functions in it so tell me if u ve solution

            D 1 Reply Last reply
            0
            • D Dave Kreskowiak

              What do you want to use the namespace for? It will only work on Longhorn and the WinFS file system... In order to get the .dll, you need to download the Longhorn SDK from Microsoft's MSDN Subscriber Downloads. You can only do that if your an MSDN Subscriber... Oh! A minor problem --> You can't install the Longhorn SDK on a machine that has the .NET Framework SDK installed. This means you can't install the SDK on the same machine as any version of Visual Studio.NET. RageInTheMachine9532

              A Offline
              A Offline
              amal_pro83
              wrote on last edited by
              #6

              i got code now but i didnt try it...here u r a copy form it namespace CSharpcenter{ using System; using Microsoft.Win32; public class ConsoleApp { public static int Main(string[] args) { // // TODO: Add code to start application here // //get down to the Typed URL in //HKCU\\SOFTWARE\\MICROSOFT\\INTERNET EXPLORER\\TYPEDURLS RegistryKey theCurrentMachine = Registry .CurrentUser ; RegistryKey theSoftware = theCurrentMachine.OpenSubKey ("SOFTWARE"); RegistryKey theMicrosoft = theSoftware.OpenSubKey ("Microsoft"); RegistryKey theIE = theMicrosoft.OpenSubKey ("Internet Explorer"); RegistryKey theTypedURLS = theIE.OpenSubKey ("TypedURLs"); //Now get all the values in the key... long lCount = theTypedURLS.ValueCount; if(lCount <= 0) return 1; string [] arTypedURL = theTypedURLS.GetValueNames(); Console.WriteLine ("You have typed in following web sites in IE :"); int i = 1; foreach ( string theURL in arTypedURL) { //get the name of the url ... Console.WriteLine ("[{0}] {1}",i,theTypedURLS.GetValue (theURL)); i++; } return 0; } } }

              D 1 Reply Last reply
              0
              • A amal_pro83

                hi dave, i want this namespace to get internet explorer history, i know how to get instances runnig from ie but only the window title of ie but not full url as i am using only c# ..i ve code for it in c++..but i dont know how to convert or use functions in it so tell me if u ve solution

                D Offline
                D Offline
                Dave Kreskowiak
                wrote on last edited by
                #7

                Uhhh...you're not getting it... THAT.DLL WILL ONLY WORK WITH WINDOWS LONGHORN AND WINFS! THERE IS NO WAY TO GET IT TO WORK WITH ANY OTHER VERSION OF WINDOWS! On top of that, it has nothing to do with IE, let alone it's history files... RageInTheMachine9532

                1 Reply Last reply
                0
                • A amal_pro83

                  i got code now but i didnt try it...here u r a copy form it namespace CSharpcenter{ using System; using Microsoft.Win32; public class ConsoleApp { public static int Main(string[] args) { // // TODO: Add code to start application here // //get down to the Typed URL in //HKCU\\SOFTWARE\\MICROSOFT\\INTERNET EXPLORER\\TYPEDURLS RegistryKey theCurrentMachine = Registry .CurrentUser ; RegistryKey theSoftware = theCurrentMachine.OpenSubKey ("SOFTWARE"); RegistryKey theMicrosoft = theSoftware.OpenSubKey ("Microsoft"); RegistryKey theIE = theMicrosoft.OpenSubKey ("Internet Explorer"); RegistryKey theTypedURLS = theIE.OpenSubKey ("TypedURLs"); //Now get all the values in the key... long lCount = theTypedURLS.ValueCount; if(lCount <= 0) return 1; string [] arTypedURL = theTypedURLS.GetValueNames(); Console.WriteLine ("You have typed in following web sites in IE :"); int i = 1; foreach ( string theURL in arTypedURL) { //get the name of the url ... Console.WriteLine ("[{0}] {1}",i,theTypedURLS.GetValue (theURL)); i++; } return 0; } } }

                  D Offline
                  D Offline
                  Dave Kreskowiak
                  wrote on last edited by
                  #8

                  OK. That's code to get the list of URL's typed into the address bar. It's not the history of URL's that IE has gone to... All the history URL's are stored ina single file called "index.dat" in the path:

                  C:\Documents and Settings\<loggedInUserID>\Local Settings\History\History.IE5

                  for Internet Explorer 5. For version 6 it will end with "\History.IE6"... There is no API will will let you get at the entires in the index.dat file. You will have to write your own code to open and parse up the file. Some investigating has revealed some site that have dug into the format of the file. Try this[^]... RageInTheMachine9532

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups