Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Table not updated.
Message
De
14/06/2007 13:45:08
 
 
À
14/06/2007 04:11:12
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01232865
Message ID:
01233152
Vues:
9
I simplified the code, still not updating.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();

      cdsDataSetTableAdapters.XRefTableAdapter ta = new cdsDataSetTableAdapters.XRefTableAdapter();
      cdsDataSet.XRefDataTable xref = ta.GetData();
      cdsDataSet.XRefRow dr = xref.NewXRefRow();
      dr.display = "Hi There";
      xref.Rows.Add(dr);
      xref.AcceptChanges();

    }
  }
}
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform