Home All Groups Group Topic Archive Search About
Author
21 Feb 2006 9:22 AM
Good
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

Author
21 Feb 2006 9:54 AM
Cor Ligthert [MVP]
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
Author
21 Feb 2006 8:08 PM
vbnetdev
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".

--
Get a powerful web, database, application, and email hosting with KJM
Solutions
http://www.kjmsolutions.com



Show quoteHide quote
"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
>
>
Author
22 Feb 2006 6:33 PM
Jim Wooley
> 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?

Since you specify genenerated code, I suspect you are refering to Winforms.
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