tags:

views:

172

answers:

1

Is there a .NET-accessible (i.e. .NET or COM) library that I can use to programmatically control Firefox? I'm looking for something that is a bit like ShDocVw.dll for IE. Doesn't have to do all that much, basically all I want to be able to do is programmatically add a bookmark.

+2  A: 

Hi,

the firefox bookmarks are stored within the Places.sqlite file within the users firefox profile folder.

There is an ado.net c# to sqlite connector available at http://sourceforge.net/projects/sqlite-dotnet2/.

edit:

Very good tutorial:
http://www.mikeduncan.com/sqlite-on-dotnet-in-3-mins/

henchman
Interesting tutorial! Thanks for that info, I'll check it out tomorrow!
PhilPursglove