Jump to content
Xtreme .Net Talk

pelican

Members
  • Posts

    7
  • Joined

  • Last visited

pelican's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. i dont think you can view stuff in .dll
  2. which powerpoint version are you using? if you are using office xp and above, powerpoint should not open.
  3. try System.Xml.Serialization to serialize them into object
  4. Eg. "This is Line 1.\r\nThis is Line 2" Before exporting, c# will print out correctly, This is Line 1. This is Line 2 After the string, "This is Line 1.\r\nThis is Line 2" being export into xml. and import back, output or print the string.... it is literally the string "This is Line 1.\r\nThis is Line 2" is there anyway to preserve the line break after xml export/import. using replace \r\n with line break after xml export/import is not really a good idea. because sometimes the real text might have \r\n that dont mean to be line break. Please advise.
  5. Hi, i am using System.Xml.Serialization; how can i serialize an empty element output <something /> ? currently, after serialize an empty element, it wont show, only not null element wil be output. Please advise.
  6. i solve my problem using [XmlArray("Plural")] [XmlArrayItem("Single",typeof(classtype))]
  7. Hi, is there any way to serialize a collection into xml? i've tried using [XmlRoot] , [XmlType] in the collection class but cant. Please advise.
×
×
  • Create New...