What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Program?

ab2008

New Member
Joined
May 4, 2012
Messages
155
Reaction score
0
Looking for an XML creation tool

What program do most people edit and or create xml's in?

And is there a pretty solid "tutorial" for lack of a better term, out there? I would love to contribute, but my programming skills don't go much past beginning Visual Studio. Heh. I've tried googling a few times but can't find anything set in stone (and I can't pay 1,000$ for a program that I'm just going to mess around with.)
 
Last edited:
notepad++ is a great place to start it has Syntax highlighting that will make it much easier to find broken pieces when your going through the files.
 
What program do most people edit the xml's in?

And is there a pretty solid "tutorial" for lack of a better term, out there? I would love to contribute, but my programming skills don't go much past beginning Visual Studio. Heh. I've tried googling a few times but can't find anything set in stone (and I can't pay 1,000$ for a program that I'm just going to mess around with.)

That is the worst guide I've seen in a long time!
 
That is the worst guide I've seen in a long time!


I see what you did there!

My mistake, I'll admit it. Now that is out of the way, can you move my question elsewhere, and also answer my question pretty please? :p
 
notepad++ for quick code editing!

for proper project i use eclipse
 
I see what you did there!

My mistake, I'll admit it. Now that is out of the way, can you move my question elsewhere, and also answer my question pretty please? :p
I didn't bother to answer because your question had already been answered :P And I'm no mod - so I can't "move" your question. I can only suggest you post the right place next time :)
 
Awesome, well thank you all very much for the fast and quick replies =)
 
Awesome, well thank you all very much for the fast and quick replies =)

What has already been said + please, name your threads so others directly know, what it is about. "Program?" isn't that meaningful =)

If you would have named it "Searching for a good tool to edit xml's" everybody would exactly know what you want. :)
 
What has already been said + please, name your threads so others directly know, what it is about. "Program?" isn't that meaningful =)

If you would have named it "Searching for a good tool to edit xml's" everybody would exactly know what you want. :)


Fixed! Thanks, in hindsight yeah that was probably a goofball mistake lol.
 
Like said before, Notepad++ is the best solution because its free. You might wanna check out Sublime Text 2. It's the editor I'm using for projects in C++ and Java.
 
Notepad++ to edit, then I really simple program I threw together in java to make sure all the tags are correct, with stuff such as:

Casing
Making sure I included /> on tags that have no end tags
Indenting, since XML indenting is a bitch
Changing && to "and"
Etc...
 
Back
Top