![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello, I was wondering if it was possibly to bind a control to a dataset.haschanges property. The reason I want to do this is so that a little warning shows up on the form saying that the record has not been saved. Thank you heaps for anyones thoughts John Sheppard |
#3
| |||
| |||
|
|
Hello, I was wondering if it was possibly to bind a control to a dataset.haschanges property. The reason I want to do this is so that a little warning shows up on the form saying that the record has not been saved. Thank you heaps for anyones thoughts John Sheppard |
#4
| |||
| |||
|
|
Hello, I was wondering if it was possibly to bind a control to a dataset.haschanges property. The reason I want to do this is so that a little warning shows up on the form saying that the record has not been saved. Thank you heaps for anyones thoughts John Sheppard |
#5
| |||
| |||
|
|
Ooops, I think I forgot to send this private void Form1_Load(object sender, EventArgs e) { AugmentedDataSet ds = new AugmentedDataSet(); ds.Tables.Add(new DataTable("WhateverTable")); ds.Tables[0].Columns.Add(new DataColumn("MyColumn", typeof(String))); chkHasChanges.DataBindings.Add("Checked", ds.HasChanged, null); } Coupled with my last post, this should do it for you "John" <nospam (AT) nospam (DOT) com> wrote in message news:fj60ok02jn0 (AT) news5 (DOT) newsguy.com... Hello, I was wondering if it was possibly to bind a control to a dataset.haschanges property. The reason I want to do this is so that a little warning shows up on the form saying that the record has not been saved. Thank you heaps for anyones thoughts John Sheppard |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |