Custom File Types

  • Thread starter Thread starter Mustafa Rabie
  • Start date Start date
M

Mustafa Rabie

Hi all,

i working on an application where i want to create my own file that holds a
jpg image and an xml file holding some fileds abt this image. Any
suggestions on how this could be done?

thanks a lot for ur help
appreciated
mustafa
 
There are too many ways to do that. You could encode the binary data as a
field in your XML file, you could use COM structured file storage to split
the XML from the binary data, etc., etc., etc.

Paul T.
 
what's the easiest and fastest way to do that?

Paul G. Tobey said:
There are too many ways to do that. You could encode the binary data as a
field in your XML file, you could use COM structured file storage to split
the XML from the binary data, etc., etc., etc.

Paul T.
 
To do which? XML? Read the XML stuff in the VS.NET help. COM? Read the
help on structured file storage. There's no right answer to your question,
just a list of possible options. Your application requirements will
determine what the right strategy is.

Paul T.
 
Back
Top