Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Update the Dataset
Message
 
À
19/06/2007 15:30:48
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01233541
Message ID:
01234463
Vues:
13
Bonnie:

Here is the code,
-------------------
Dim Depts_changes_final As New DataSet
Dim depts_changes As New DataView
Dim rposition As CurrencyManager
------------------
 Public Sub New(ByVal parentdataset As DataSet)
        Depts_changes_final = parentdataset

        ' This call is required by the Windows Form Designer.
        InitializeComponent()
        Dim depts_lookupdataset2 As New DataSet
        depts_changes.Table = parentdataset.Tables(0)
        depts_changes.RowFilter = "Lsele = True"
        depts_changes.AllowEdit = True
        rposition = CType(Me.BindingContext(depts_changes), CurrencyManager)
        Dim depts_DB As New BindingSource
        depts_DB.DataSource = depts_changes
        Me.Dept_selection_BNav.BindingSource = depts_DB
        Me.Dept_PkTxt.DataBindings.Add("Text", depts_changes, depts_changes.Table.Columns(1).ToString)
        Me.Dept_nameTXT.DataBindings.Add("Text", depts_changes, depts_changes.Table.Columns(3).ToString)
        Me.Dept_AbbTxt.DataBindings.Add("Text", depts_changes, depts_changes.Table.Columns(2).ToString)
        depts_changes.AllowEdit = True
        ' Add any initialization after the InitializeComponent() call.
    End Sub

    
    Private Sub BindingNavigatorMovePreviousItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorMovePreviousItem.Click
        If rposition.Position > 0 Then
            rposition.Position = rposition.Position - 1
        End If
    End Sub

    Private Sub BindingNavigatorMoveNextItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorMoveNextItem.Click
        If rposition.Position < rposition.Count - 1 Then
            rposition.Position = rposition.Position + 1
        End If
    End Sub

    Private Sub BindingNavigatorMoveFirstItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorMoveFirstItem.Click
        rposition.Position = 0
    End Sub

    Private Sub BindingNavigatorMoveLastItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorMoveLastItem.Click
        rposition.Position = rposition.Count - 1
    End Sub

    Private Sub Dept_nameTXT_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Dept_nameTXT.LostFocus
        Me.depts_changes.Table.Rows(3).EndEdit()
    End Sub
Gregorio J. Placeres
IT Analyst
Uniform Accounting Network
Auditor of State of Ohio
88 East Broad Street
P.O. Box 1140
Columbus, Ohio 43216-1140

Tel. 614-728-4694

Gregorio_J@MSN.COM

http://www.gjpproductions.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform