Click here to Skip to main content
15,886,095 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am creating a .doc file in WP7 using Isolated Storage using the Following Code:

C#
using (StreamWriter SW = new StreamWriter(new IsolatedStorageFileStream("Sample.doc", FileMode.Create, FileAccess.Write, ISF)))
                    {
                        string text = "Hi this is the text which will be written to the file and we can retrieve that later";
                        SW.WriteLine(text);
                        SW.Close();
                        MessageBox.Show("Your Text Has Been Saved Successfully To The File");
                    }



How can I add Image inside .doc file I created using StreamWrtiter or any other means possible using Isolated Storage in WP7.
Thanks in Advance.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900