Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
QuestionProblem in Toolstrip Pin
priyamtheone7-May-09 5:24
priyamtheone7-May-09 5:24 
QuestionUpdating confirmation box by commandfield. Pin
magshine7-May-09 5:15
magshine7-May-09 5:15 
QuestionHow to put powerpoint on different displays (multiply monitors)? Pin
molda7-May-09 5:06
molda7-May-09 5:06 
AnswerRe: How to put powerpoint on different displays (multiply monitors)? Pin
OriginalGriff7-May-09 5:11
mveOriginalGriff7-May-09 5:11 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
OriginalGriff7-May-09 5:46
mveOriginalGriff7-May-09 5:46 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
molda7-May-09 6:17
molda7-May-09 6:17 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
Luc Pattyn7-May-09 7:18
sitebuilderLuc Pattyn7-May-09 7:18 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
OriginalGriff7-May-09 8:19
mveOriginalGriff7-May-09 8:19 
AnswerRe: How to put powerpoint on different displays (multiply monitors)? Pin
Luc Pattyn7-May-09 7:17
sitebuilderLuc Pattyn7-May-09 7:17 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
molda7-May-09 21:40
molda7-May-09 21:40 
GeneralRe: How to put powerpoint on different displays (multiply monitors)? Pin
Luc Pattyn8-May-09 0:40
sitebuilderLuc Pattyn8-May-09 0:40 
QuestionPlease help with NHibernate. Could not compile the mapping document. Pin
Nopo7-May-09 4:45
Nopo7-May-09 4:45 
QuestionWatermarking over Video Pin
anki1237-May-09 3:19
anki1237-May-09 3:19 
AnswerRe: Watermarking over Video Pin
Rajesh R Subramanian7-May-09 3:26
professionalRajesh R Subramanian7-May-09 3:26 
QuestionRemove duplicate nodes from xml using c# Pin
ipstefan7-May-09 2:56
ipstefan7-May-09 2:56 
I an having some trouble with removing duplicate entries from an xml file.
I am using mostly Linq to XML and C# to build the list.So I would like a Linq to Xml aproach further too.
Example(before):
   <SYNSET>
      <ID>new_id</ID>
      <SYNONYM>
         <LITERAL>word1<SENSE>II.♦</SENSE></LITERAL>
      </SYNONYM>
      <DEF> definition1 </DEF>
   </SYNSET>
   <SYNSET>
      <ID>new_id</ID>
      <SYNONYM>
         <LITERAL>word2<SENSE>I</SENSE></LITERAL>
      </SYNONYM>
      <DEF> definition2 </DEF>
   </SYNSET>
   <SYNSET>
      <ID>new_id</ID>
      <SYNONYM>
         <LITERAL>word1<SENSE>II.♦</SENSE></LITERAL>
      </SYNONYM>
      <DEF> definition1 </DEF>
   </SYNSET>

After it should be:

   <SYNSET>
      <ID>new_id</ID>
      <SYNONYM>
         <LITERAL>word1<SENSE>II.♦</SENSE></LITERAL>
      </SYNONYM>
      <DEF> definition1 </DEF>
   </SYNSET>
   <SYNSET>
      <ID>new_id</ID>
      <SYNONYM>
         <LITERAL>word2<SENSE>I</SENSE></LITERAL>
      </SYNONYM>
      <DEF> definition2 </DEF>
   </SYNSET>

The xml database should have around 100k entries like this, so I need a fast method to remove duplicates. Thanks in advance
AnswerRe: Remove duplicate nodes from xml using c# Pin
musefan7-May-09 4:26
musefan7-May-09 4:26 
GeneralRe: Remove duplicate nodes from xml using c# Pin
ipstefan7-May-09 6:00
ipstefan7-May-09 6:00 
GeneralRe: Remove duplicate nodes from xml using c# Pin
musefan7-May-09 6:13
musefan7-May-09 6:13 
GeneralRe: Remove duplicate nodes from xml using c# Pin
ipstefan7-May-09 7:00
ipstefan7-May-09 7:00 
GeneralRe: Remove duplicate nodes from xml using c# Pin
musefan7-May-09 21:58
musefan7-May-09 21:58 
GeneralRe: Remove duplicate nodes from xml using c# Pin
ipstefan8-May-09 20:51
ipstefan8-May-09 20:51 
QuestionListView - Select ListViewItem Pin
al3xutzu007-May-09 1:34
al3xutzu007-May-09 1:34 
AnswerRe: ListView - Select ListViewItem Pin
Nagy Vilmos7-May-09 1:51
professionalNagy Vilmos7-May-09 1:51 
GeneralRe: ListView - Select ListViewItem Pin
al3xutzu007-May-09 2:05
al3xutzu007-May-09 2:05 
AnswerRe: ListView - Select ListViewItem Pin
fly9047-May-09 2:01
fly9047-May-09 2:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.