Click here to Skip to main content
15,885,537 members
Articles / Programming Languages / Visual Basic

Xml Database Demo

Rate me:
Please Sign up or sign in to vote.
4.59/5 (25 votes)
31 Jul 2008CPOL9 min read 150.2K   8K   110  
This article walks you through creating a simple windows database with an Xml file as it's datasource.


Partial Public Class DsXmlDbDemo
    Partial Class OrdersDataTable

        Private Sub OrdersDataTable_ColumnChanging(ByVal sender As System.Object, ByVal e As System.Data.DataColumnChangeEventArgs) Handles Me.ColumnChanging
            If (e.Column.ColumnName = Me.PriceColumn.ColumnName) Then
                'Add user code here
            End If

        End Sub

    End Class

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer DataPrint, LLC
United States United States

Comments and Discussions