New to programming please help

scottstarbuck

Newcomer
Joined
Mar 20, 2006
Messages
1
I'm just trying to add a file programmatically to my project I'm totally lost on this one. If any help can be thrown my way it would be cool.


I have a project that Im interacting with a exsisting program and i need to right to a file created in visual studio. To go one set further The file I will need to send to the other program is a csv file.
 
Assuming I understand what you need correctly, visual studio project files are just XML. You can open them up with a text editor and look at them. To add a new file, you just need to add a new XML node for the file. Once you look at the project file it should be pretty easy to figure out.
 
Back
Top