Ejemplo n.º 1
0
 public void loadXML( string strXML )
 {
     if ( !string.IsNullOrEmpty(strXML) )
         try
         {
             var p = new PlataDM.vdPersist();
             p.beginLoadXML( strXML );
             x(p);
         }
         catch ( Exception )
         {
         }
 }
Ejemplo n.º 2
0
 private void saveNotes( string strFN )
 {
     PlataDM.vdPersist po = new PlataDM.vdPersist();
     po.beginSave();
     po.descend( "NOTES" );
     po.xcol( "NOTE", _notes );
     po.endSaveFile( strFN );
 }
Ejemplo n.º 3
0
 public string saveXML()
 {
     var p = new PlataDM.vdPersist();
     p.beginSave();
     x(p);
     return p.endSaveXML();
 }
Ejemplo n.º 4
0
 private void loadNotes( string strFN )
 {
     try
     {
         if ( !System.IO.File.Exists( strFN ) )
             return;
         PlataDM.vdPersist po = new PlataDM.vdPersist();
         po.beginLoadFile( strFN );
         po.descend( "NOTES" );
         po.xcol( "NOTE", _notes );
         updateOrderFilter();
     }
     catch
     {
     }
 }