Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. How to create XML Editor with c#?

How to create XML Editor with c#?

Scheduled Pinned Locked Moved C#
tutorialcsharptoolsxmlhelp
10 Posts 6 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    Chua Wen Ching
    wrote on last edited by
    #1

    Hi everyone, I want to do something like XMLSpy or may tools like DreamweaverMX. 1) When you type this: Before: (ignore the "") ======== "<"MyCompany">" //then the xml editor will automatically add the After: ======= "<"MyCompany">" "<"/MyCompany">" I just want to do a very simple xml editor for c#. And at the end, save it into a xml file. I had been coding xml in notepad, and it is very troublesome. I am not sure what areas i need to research in. Is there any tutorial on this or any source code, which i can refer to? Any help, please? Thanks. Regards, Chua Wen Ching :p

    R K C 3 Replies Last reply
    0
    • C Chua Wen Ching

      Hi everyone, I want to do something like XMLSpy or may tools like DreamweaverMX. 1) When you type this: Before: (ignore the "") ======== "<"MyCompany">" //then the xml editor will automatically add the After: ======= "<"MyCompany">" "<"/MyCompany">" I just want to do a very simple xml editor for c#. And at the end, save it into a xml file. I had been coding xml in notepad, and it is very troublesome. I am not sure what areas i need to research in. Is there any tutorial on this or any source code, which i can refer to? Any help, please? Thanks. Regards, Chua Wen Ching :p

      R Offline
      R Offline
      Roger Alsing 0
      wrote on last edited by
      #2

      we are a small component company and a bit short on time , so we are always interested in people making samples with our controls. if the project is not indended to be opensource you can get a license for free for our syntaxbox (http://www.compona.com/wikiengine/WikiPageViewer.ascx?id=5[^]) supposing we get the right to publish the editor as a sample on our website. //Roger

      C B 2 Replies Last reply
      0
      • R Roger Alsing 0

        we are a small component company and a bit short on time , so we are always interested in people making samples with our controls. if the project is not indended to be opensource you can get a license for free for our syntaxbox (http://www.compona.com/wikiengine/WikiPageViewer.ascx?id=5[^]) supposing we get the right to publish the editor as a sample on our website. //Roger

        C Offline
        C Offline
        Chua Wen Ching
        wrote on last edited by
        #3

        Hi there, Thanks for the url. I am looking to how to do that, not using any component. I just want to write a xml editor, so i can save up money and code xml much easier. Any help, on areas which i can achieve the thing i want, please? Thanks.

        H 1 Reply Last reply
        0
        • C Chua Wen Ching

          Hi everyone, I want to do something like XMLSpy or may tools like DreamweaverMX. 1) When you type this: Before: (ignore the "") ======== "<"MyCompany">" //then the xml editor will automatically add the After: ======= "<"MyCompany">" "<"/MyCompany">" I just want to do a very simple xml editor for c#. And at the end, save it into a xml file. I had been coding xml in notepad, and it is very troublesome. I am not sure what areas i need to research in. Is there any tutorial on this or any source code, which i can refer to? Any help, please? Thanks. Regards, Chua Wen Ching :p

          K Offline
          K Offline
          KevinMac
          wrote on last edited by
          #4

          I started to write my own and I found this on the net for FREE. http://architag.com/xray/ I use it all the time and find it very useful. If you still want to pursue developing your own I would enjoy the chance to work on an open source project if you need help. Kevin

          C 1 Reply Last reply
          0
          • K KevinMac

            I started to write my own and I found this on the net for FREE. http://architag.com/xray/ I use it all the time and find it very useful. If you still want to pursue developing your own I would enjoy the chance to work on an open source project if you need help. Kevin

            C Offline
            C Offline
            Chua Wen Ching
            wrote on last edited by
            #5

            Yeah, thanks for the link again. I want to develop for myself. Anything that is written with c# and work with .net framework 1.1? Just wonder, intellisense is something free to download and add into my system or what? Just assume i write a xml editor which i require intellisense. Any help? Thanks.

            1 Reply Last reply
            0
            • C Chua Wen Ching

              Hi there, Thanks for the url. I am looking to how to do that, not using any component. I just want to write a xml editor, so i can save up money and code xml much easier. Any help, on areas which i can achieve the thing i want, please? Thanks.

              H Offline
              H Offline
              Heath Stewart
              wrote on last edited by
              #6

              Save money by using notepad, gvim, emacs, or some other vanilla text editor! If your typing skills are good enough, such "helpful" features are, IMO, actually just hinderances.

              -----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----

              1 Reply Last reply
              0
              • C Chua Wen Ching

                Hi everyone, I want to do something like XMLSpy or may tools like DreamweaverMX. 1) When you type this: Before: (ignore the "") ======== "<"MyCompany">" //then the xml editor will automatically add the After: ======= "<"MyCompany">" "<"/MyCompany">" I just want to do a very simple xml editor for c#. And at the end, save it into a xml file. I had been coding xml in notepad, and it is very troublesome. I am not sure what areas i need to research in. Is there any tutorial on this or any source code, which i can refer to? Any help, please? Thanks. Regards, Chua Wen Ching :p

                C Offline
                C Offline
                Christian Graus
                wrote on last edited by
                #7

                I wrote an article for Windows Developer Journal on an XML wrapper in C#, with a friend called 'Matt Cole' ( google his name and mine to find it ) and the code came with a simple editor that does what you want, albiet in a brute force manner. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder

                1 Reply Last reply
                0
                • R Roger Alsing 0

                  we are a small component company and a bit short on time , so we are always interested in people making samples with our controls. if the project is not indended to be opensource you can get a license for free for our syntaxbox (http://www.compona.com/wikiengine/WikiPageViewer.ascx?id=5[^]) supposing we get the right to publish the editor as a sample on our website. //Roger

                  B Offline
                  B Offline
                  blakeb_1
                  wrote on last edited by
                  #8

                  Are there any other requirements on what type of projects would qualify for this? Do they have to be freeware type projects or can it be a program that we might possibly sell?

                  B 1 Reply Last reply
                  0
                  • B blakeb_1

                    Are there any other requirements on what type of projects would qualify for this? Do they have to be freeware type projects or can it be a program that we might possibly sell?

                    B Offline
                    B Offline
                    blakeb_1
                    wrote on last edited by
                    #9

                    Sorry, that last message was meant for Roger J Blake

                    R 1 Reply Last reply
                    0
                    • B blakeb_1

                      Sorry, that last message was meant for Roger J Blake

                      R Offline
                      R Offline
                      Roger Alsing 0
                      wrote on last edited by
                      #10

                      what we are looking for is sample applications for our users , code samples using our free controls. so we are not looking for huge binary demos of any sort , just easy to follow code samples. //Roger

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups