473,657 Members | 2,385 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Bound controls do not copy across data to underlying data row

Hi

I have a small app with bound controls that do not seem to be copying across
the data entered into them to the underlying row for the update. This one
really has me stump even though these are very simple steps and I can't see
where I am going wrong. Any help would be appreciated.

The relevant code goes as follows;

Binding controls

Dim db As System.Windows. Forms.Binding
ds = MyDataset
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "ID")
txtID.DataBindi ngs.Add(db)
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Company")
txtCompany.Data Bindings.Add(db )
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Address")
txtAddress.Data Bindings.Add(db )

bmCompanyDetail s = CType(BindingCo ntext(ds, "Clients"), CurrencyManager )

Adding a new record;

ds.Clients.Clea r()
bmCompanyDetail s.AddNew()

Some data is entered in the Company and Address bound fields by user and
Save button is pressed to save as below;

Focus()
bmCompanyDetail s.EndCurrentEdi t()
Row = DirectCast(bmCo mpanyDetails.Cu rrent, DataRowView).Ro w

If (Row.RowState = DataRowState.Ad ded) Then
' Row.Item(5) = "Test column 5" ' if this line is un-remmed this data is
stored in datatable so update is working
daCompanies.Upd ate(ds.Clients)
End If

The Clients table is an MS Access table with ID set to Random Auto number.

Thanks

Regards
Feb 10 '08 #1
2 1200
So if I understand correctly, the data will update in the underlying row if
you uncomment that line of code out. If you use yourDataSet.Has Changes(),
what does it return (putting it right before the Update call?). Is it that
when you call Update, it doesn't get sent to the DB?

--
bill.ryan | technology.evan gelist | magenic.technol ogies
mvp - device application development
http://www.msmvps.com/WilliamRyan
http://www.magenic.com
"John" <Jo**@nospam.in fovis.co.ukwrot e in message
news:Oe******** ******@TK2MSFTN GP05.phx.gbl...
Hi

I have a small app with bound controls that do not seem to be copying
across the data entered into them to the underlying row for the update.
This one really has me stump even though these are very simple steps and I
can't see where I am going wrong. Any help would be appreciated.

The relevant code goes as follows;

Binding controls

Dim db As System.Windows. Forms.Binding
ds = MyDataset
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "ID")
txtID.DataBindi ngs.Add(db)
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Company")
txtCompany.Data Bindings.Add(db )
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Address")
txtAddress.Data Bindings.Add(db )

bmCompanyDetail s = CType(BindingCo ntext(ds, "Clients"), CurrencyManager )

Adding a new record;

ds.Clients.Clea r()
bmCompanyDetail s.AddNew()

Some data is entered in the Company and Address bound fields by user and
Save button is pressed to save as below;

Focus()
bmCompanyDetail s.EndCurrentEdi t()
Row = DirectCast(bmCo mpanyDetails.Cu rrent, DataRowView).Ro w

If (Row.RowState = DataRowState.Ad ded) Then
' Row.Item(5) = "Test column 5" ' if this line is un-remmed this data is
stored in datatable so update is working
daCompanies.Upd ate(ds.Clients)
End If

The Clients table is an MS Access table with ID set to Random Auto number.

Thanks

Regards

Feb 11 '08 #2
Ryan, it was a binding issue which Miha has kindly solved for me in another
thread.

Many Thanks

Regards

"W.G. Ryan" <Wi*********@no spam.gmail.comw rote in message
news:Op******** ******@TK2MSFTN GP04.phx.gbl...
So if I understand correctly, the data will update in the underlying row
if you uncomment that line of code out. If you use
yourDataSet.Has Changes(), what does it return (putting it right before the
Update call?). Is it that when you call Update, it doesn't get sent to
the DB?

--
bill.ryan | technology.evan gelist | magenic.technol ogies
mvp - device application development
http://www.msmvps.com/WilliamRyan
http://www.magenic.com
"John" <Jo**@nospam.in fovis.co.ukwrot e in message
news:Oe******** ******@TK2MSFTN GP05.phx.gbl...
>Hi

I have a small app with bound controls that do not seem to be copying
across the data entered into them to the underlying row for the update.
This one really has me stump even though these are very simple steps and
I can't see where I am going wrong. Any help would be appreciated.

The relevant code goes as follows;

Binding controls

Dim db As System.Windows. Forms.Binding
ds = MyDataset
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "ID")
txtID.DataBind ings.Add(db)
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Company")
txtCompany.Dat aBindings.Add(d b)
db = New System.Windows. Forms.Binding(" Text", ds.Clients, "Address")
txtAddress.Dat aBindings.Add(d b)

bmCompanyDetai ls = CType(BindingCo ntext(ds, "Clients"), CurrencyManager )

Adding a new record;

ds.Clients.Cle ar()
bmCompanyDetai ls.AddNew()

Some data is entered in the Company and Address bound fields by user and
Save button is pressed to save as below;

Focus()
bmCompanyDetai ls.EndCurrentEd it()
Row = DirectCast(bmCo mpanyDetails.Cu rrent, DataRowView).Ro w

If (Row.RowState = DataRowState.Ad ded) Then
' Row.Item(5) = "Test column 5" ' if this line is un-remmed this data
is stored in datatable so update is working
daCompanies.Upd ate(ds.Clients)
End If

The Clients table is an MS Access table with ID set to Random Auto
number.

Thanks

Regards


Feb 11 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2431
by: PAUL EDWARDS | last post by:
I have a windows form that is bound to a datatable. In VB6 I could just update the field contents and it would be updated in the database, however if I update the text property of the control from code it is 50% chance that the update will make it back to the dataset. If I update the dataset instead of the form, it does not show on the form. Is there a method that should be used?
42
5757
by: Edward Diener | last post by:
Coming from the C++ world I can not understand the reason why copy constructors are not used in the .NET framework. A copy constructor creates an object from a copy of another object of the same kind. It sounds simple but evidently .NET has difficulty with this concept for some reason. I do understand that .NET objects are created on the GC heap but that doesn't mean that they couldn't be copied from another object of the same kind when...
19
4091
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate the code that implements managing unbound controls on forms given the superior performance of unbound controls in a client/server environment. I can easily understand a newbie using bound controls or someone with a tight deadline. I guess I need...
4
1758
by: kaborka | last post by:
I have a WinForm with controls bound to a typed recordset that was generated by the Dataset Designer. There are several ComboBox controls with their DataSource bound to different lookup tables. Everything is working fine, except when I need to handle a null default value in the data record coming from the database. I want the combo whose SelectedValue is bound to that field to display the "default" entry in the combo in this case. I...
7
2827
by: vsiat | last post by:
I am trying to create a treeview out of a database table with the typical structure ID, NAME, PARENTID, TYPE, EXTRA_INFO, where is linked to the . What I want to achieve is create a tree made of custom, extended nodes, which include all the extra information contained in the table and not just typical TreeNode objects. To do that, I first created a structure with all the extra
4
1426
by: Lenster | last post by:
Hi I'm using bound controls on a windows form such as textboxes, checkboxes etc. which work fine except for one thing... If you click on a checkbox for example its value changes visibly and also the value changes in the underlying data table - but no events are fired until you move to a new column or row. Does anyone know of a way of being notified when the fields value starts
8
3295
by: Jon Weston | last post by:
I'm setting up an Access2003 database with pictures. I put a bound ole picture ctrl on a form that's source is the table that contains the pictures and follow ALL the directions for embedding a picture. The ctrl in the form only displays the filename of the picture. The underlying table, when opened in table view, shows the word "package" in the field. When I double-click on either it opens the picture, but I can't get it to display. ...
0
2007
by: Frnak McKenney | last post by:
Can I use a bound ComboBox for both browsing and editing? I'm working on a small, standalone database application using Visual C#.NET 2003 and an Access data file. In order to keep the number of different screens down to a minimum, I'm trying to use the same Windows Forms for both browsing and for updating. This works fine for TextBoxes, but I'm running into problems with my DropDownLists (ComboBoxes).
2
2147
by: cjard | last post by:
Suppose: A TextBox is bound to a BindingSource, which is bound to a DataTable A BindingNavigator is used to alter the current row being looked at by the BindingSource (i.e. Nav's NEXT button is pressed. BS.Position changes from 2 to 3, Textbox was showing APPLE, now shows ORANGE) Does the textbox receive any notification that this occurred? If so, what?
0
8324
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8516
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7353
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.