Okay now i am asking these 3 questions:
1. How can i have my app save a .iproj file or something of that sort. Like to save your work in the program.
2. How can i make it so my program doesn't require .NET framework? Like have it acess the DLL's locally?
3. My app is going to be a Web Page Designer, So it'll have a function like Save Project (above) then Build .HTML File. How can i make it like convert certain data to HTML like if my .iproj page was like this:
How would i make a parser to spit out this:Code:<Project> <PageHead> <PageTitle> Something </PageTitle> <PageScripts> </PageScripts> </PageHead> <PageBody> <Header type="1"> TEST </Header> </PageBody> </Project>
Thanks for any help!Code:<html> <head> <title> Something </title> </head> <body> <h1> TEST </h1> </body> </html>