![]() |
.NET Textbox and databinding
Hello everyone,
Can someone help with this idea, Textbox1.text = mydataset.consumer.address Consumer is my table and address is the feild!!! Thx! I want to retreive and update information from that textbox using OLEDB adapters. |
Re: .NET Textbox and databinding
Your post went unanswered. Have you resolved this issue?
-- Regards, Alvin Bruney [ASP.NET MVP] Got tidbits? Get it here... http://tinyurl.com/3he3b "Nikerz Inc" <nikerzinc@hotmail.com> wrote in message news:uKaa7ai8DHA.2560@TK2MSFTNGP09.phx.gbl... > Hello everyone, > > Can someone help with this idea, > > Textbox1.text = mydataset.consumer.address > > Consumer is my table and address is the feild!!! Thx! I want to retreive > and update information from that textbox using OLEDB adapters. > > |
Re: .NET Textbox and databinding
Hi there!
Nope not yet!!! I've been doing some research but so far I can't find any detailed information as to my goal. "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message news:OKbAUeGAEHA.3048@tk2msftngp13.phx.gbl... > Your post went unanswered. Have you resolved this issue? > > -- > Regards, > Alvin Bruney [ASP.NET MVP] > Got tidbits? Get it here... > http://tinyurl.com/3he3b > "Nikerz Inc" <nikerzinc@hotmail.com> wrote in message > news:uKaa7ai8DHA.2560@TK2MSFTNGP09.phx.gbl... > > Hello everyone, > > > > Can someone help with this idea, > > > > Textbox1.text = mydataset.consumer.address > > > > Consumer is my table and address is the feild!!! Thx! I want to retreive > > and update information from that textbox using OLEDB adapters. > > > > > > |
Re: .NET Textbox and databinding
Your syntax is incorrect since a dataset has tables which in turn contain
rows, it doesn't know which row of which table you are asking it to display. Use this instead TextBox1.Text = mydataset.consumer[0].Rows[row][column].ToString() this assigns a specific field in the default consumer table at the specified row given by the coordinate (row,column). hth -- Regards, Alvin Bruney [ASP.NET MVP] Got tidbits? Get it here... http://tinyurl.com/3he3b "Nikerz Inc" <nikerzinc@hotmail.com> wrote in message news:uiKsYxJAEHA.2300@tk2msftngp13.phx.gbl... > Hi there! > > Nope not yet!!! I've been doing some research but so far I can't find any > detailed information as to my goal. > > > "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message > news:OKbAUeGAEHA.3048@tk2msftngp13.phx.gbl... > > Your post went unanswered. Have you resolved this issue? > > > > -- > > Regards, > > Alvin Bruney [ASP.NET MVP] > > Got tidbits? Get it here... > > http://tinyurl.com/3he3b > > "Nikerz Inc" <nikerzinc@hotmail.com> wrote in message > > news:uKaa7ai8DHA.2560@TK2MSFTNGP09.phx.gbl... > > > Hello everyone, > > > > > > Can someone help with this idea, > > > > > > Textbox1.text = mydataset.consumer.address > > > > > > Consumer is my table and address is the feild!!! Thx! I want to > retreive > > > and update information from that textbox using OLEDB adapters. > > > > > > > > > > > > |
| All times are GMT. The time now is 07:23 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.