Thanks Chris.
It is a windows forms app.
"Chris Lovett" <clovett-at-microsoft-dot-com> wrote in message
news:10e7fvgihjbg0ee@corp.supernews.com...
> I have something like that at
http://www.lovettpictures.com/gallery1.htm. > You can see the XML at
http://www.lovettpictures.com/gallery1/gallery1.xml. > here I'm using about 250 bytes of XML per image, so if you had 10000
images
> that would be 2.5 megabytes. That's getting on the high side for quick
> response from XPath queries, the more linear the XPath query expression
the
> worse it will perform (since XML Documents don't have any indexes). So if
> you can partition that at all to sets of images so the index remains under
a
> megabyte, then you'll be able to count on reasonable performance.
>
> I assume you are considing an IE browser based zero-install solution, so
the
> user can just pop in the CD and go, in this case you could use the
> scriptable MSXML component and you might be able to do some things
in-memory
> in the root HTML Frame to partition the XML and index critical stuff using
> JScript associative arrays, then use that from then on. This will add a
bit
> to the startup time, but improve the overall user experience from then on.
>
> If you actually plan to install a .NET application from the CD, then you
> have more options, DataSet being a good one, since it does have indexes.
>
>
> "SStory" <TheStorys@TAKEOUTTHISSPAMBUSTERsofthome.net> wrote in message
> news:eQmHekVXEHA.2840@TK2MSFTNGP11.phx.gbl...
> > I am creating a CD that will have various product images. I need more
> > information on these JPG's so I will need some sort of data on each of
> them.
> > I will also need to be able to find these images by keywords, title,
> > subject, etc....sort of a gallery.
> >
> > I was considering trying to use XML to avoid using any database. It
will
> be
> > a fixed set of data, except that from time to time additional items may
be
> > added--via internet download.
> >
> > What is the group opinion on doing something like this? Would XML be a
> good
> > solution?
> > Too difficult and not worth the trouble? Too verbose? I figure
> 5000-10000
> > images max--but no bigger than 300x 300pix.
> >
> > I am fairly new to XML, but from what I read it appears that the
XDocument
> > class might be the one to go with for something like this. I have also
> > considered that maybe it should somehow be in XML but then read into a
> > dataset to be manipulated sort of like a database.
> >
> > All opinions encouraged...
> >
> > If the general agreement is that XML would be a good solution, please
> > provide some of the best resources for doing what I need to do...
> >
> > Thanks,
> >
> > Shane
> >
> >
> >
>
>