Click here to Skip to main content
15,922,696 members
Home / Discussions / C#
   

C#

 
GeneralRe: file path Pin
AhsanS19-Aug-08 0:01
AhsanS19-Aug-08 0:01 
AnswerRe: file path Pin
bassjuh18-Aug-08 23:54
bassjuh18-Aug-08 23:54 
GeneralRe: file path Pin
arkiboys19-Aug-08 0:11
arkiboys19-Aug-08 0:11 
GeneralRe: file path Pin
sumit703419-Aug-08 0:22
sumit703419-Aug-08 0:22 
GeneralRe: file path Pin
arkiboys19-Aug-08 1:25
arkiboys19-Aug-08 1:25 
GeneralRe: file path Pin
bassjuh19-Aug-08 0:25
bassjuh19-Aug-08 0:25 
GeneralRe: file path Pin
sumit703419-Aug-08 0:30
sumit703419-Aug-08 0:30 
AnswerRe: file path [modified] Pin
Csharp_Raja19-Aug-08 1:17
Csharp_Raja19-Aug-08 1:17 
This following code will help you to access the file which is added to the project

Add the file into the project and then set the property as embedded file then you will be able to access with the following code. or you can add the file in the resource file and you will be able to access the file.

Assembly embeddedFile = Assembly.GetExecutingAssembly();
Stream StreamEmbeddedFile;
StreamEmbeddedFile = embeddedFile.GetManifestResourceStream ("NameSpace.Test.xml");
XmlDocument myStylesheet = new XmlDocument();
myStylesheet.Load(StreamEmbeddedFile);

Here, "NameSpace" is default namespace.

if you have any other problem on this pls let me know

Thanks
Raja.S

modified on Tuesday, August 19, 2008 7:25 AM

GeneralRe: file path Pin
arkiboys19-Aug-08 1:33
arkiboys19-Aug-08 1:33 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 2:16
Csharp_Raja19-Aug-08 2:16 
GeneralRe: file path Pin
arkiboys19-Aug-08 2:28
arkiboys19-Aug-08 2:28 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 2:54
Csharp_Raja19-Aug-08 2:54 
GeneralRe: file path Pin
arkiboys19-Aug-08 3:02
arkiboys19-Aug-08 3:02 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 3:08
Csharp_Raja19-Aug-08 3:08 
GeneralRe: file path Pin
arkiboys19-Aug-08 3:11
arkiboys19-Aug-08 3:11 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 3:14
Csharp_Raja19-Aug-08 3:14 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 3:17
Csharp_Raja19-Aug-08 3:17 
GeneralRe: file path Pin
arkiboys19-Aug-08 3:19
arkiboys19-Aug-08 3:19 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 3:24
Csharp_Raja19-Aug-08 3:24 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 3:30
Csharp_Raja19-Aug-08 3:30 
GeneralRe: file path Pin
arkiboys19-Aug-08 3:33
arkiboys19-Aug-08 3:33 
GeneralRe: file path Pin
Csharp_Raja19-Aug-08 4:53
Csharp_Raja19-Aug-08 4:53 
GeneralRe: file path Pin
arkiboys19-Aug-08 20:59
arkiboys19-Aug-08 20:59 
AnswerRe: file path Pin
chaiguy133719-Aug-08 16:02
chaiguy133719-Aug-08 16:02 
GeneralRe: file path Pin
arkiboys19-Aug-08 21:23
arkiboys19-Aug-08 21:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.