Sep 28, 2003 #1 itflash Programmer Jul 18, 2001 535 GB Hi all Have probably a very simple question. What is the routine to update databound text boxes? I have the grid working fine with... objDA.Update(myDS, "Table1" Why cannot I do the same for databound text boxes? It does not work. Thanks ITflash
Hi all Have probably a very simple question. What is the routine to update databound text boxes? I have the grid working fine with... objDA.Update(myDS, "Table1" Why cannot I do the same for databound text boxes? It does not work. Thanks ITflash
Jan 9, 2004 #2 handoko Technical User Apr 18, 2003 24 ID ITflash, you have to use this code first try Me.BindingContext(Myds.table1).EndCurrentEdit() ObjDa.Update(Myds) Catch x As Exception 'Error Message End Try Handoko Upvote 0 Downvote
ITflash, you have to use this code first try Me.BindingContext(Myds.table1).EndCurrentEdit() ObjDa.Update(Myds) Catch x As Exception 'Error Message End Try Handoko