|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Hi All
In VB 2003, the code generated for data binding could be viewed under coding panel. But for 2005, Is there any chance to view these code behind? Cheers Good Good,
Depends, as far as I know not in ASPNET. In windowforms, you can click in the solution explorere on show all files in top. The first thing I do when I start a program, I wished it was default. Than you can look at the files formX.designer.vb I hope this helps, Cor Under Form load event lets say you had a text box.
TextBox1.Text = "Foo" Right click on textbox1 and ask to "view definition". it should take you to the "hidden code". -- Show quoteHide quoteGet a powerful web, database, application, and email hosting with KJM Solutions http://www.kjmsolutions.com "Good" <g***@man.com> wrote in message news:%23$THVhsNGHA.3164@TK2MSFTNGP11.phx.gbl... > Hi All > > In VB 2003, the code generated for data binding could be viewed under > coding > panel. But for 2005, Is there any chance to view these code behind? > > Cheers > Good > > > In VB 2003, the code generated for data binding could be viewed under Since you specify genenerated code, I suspect you are refering to Winforms. > coding panel. But for 2005, Is there any chance to view these code > behind? You can still access the generated section by selecting to "View all files" in your solution. You will then find a myForm.Designer.vb file which includes the same code. If you have bound the control, you will see code associated with your control like this: Me.SampleTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.MyBindingSource, "PropertyName", True)) You can tweak this to specify formatting options and when the binding should be applied (onValidation, onChange, etc). Jim Wooley
MSDN .Net Remoting Sample ?
Program flow control Current Recordset does not support updating - HELP needed! Read a file, knowing only a part of its name Which Database type to use? Windows Service stopped working close connection Simple Binding with Textbox Control mshflexgrid Problem system.runtime.interopservices.COMException |
|||||||||||||||||||||||