system.storage.schemas.dll
-
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
-
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
This namespace and the dll are part of .NET Framework in Windows Codename Longhorn and you cannot get it for other operating systems.
-
This namespace and the dll are part of .NET Framework in Windows Codename Longhorn and you cannot get it for other operating systems.
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
-
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
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
-
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
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
-
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
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; } } }
-
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
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
-
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; } } }
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