I agreee with you Branco ,
I still have the idea that my own code is much faster and cleaner
But indeed i do use the wizards a lot , but if i need to write a fast
performing data manipulating app , i prefer to write my own code
I also see that a lot of "new" coders don`t even now how to do things
without the wizzards ( i call them drag drop pilots
sometimes when we run into somekind of weird problem i can still solve
things by writing my own custom code , those people can only give up , and
blame MS
I am not happy with the fact that dragging and dropping ( and having no
idea what is generated behind the scenes) seems to get the coding standard
, this is really a bad thing for our proffession , however it is also
making me more worth as i already encountered a few projects wher a form
was worthless because the designer corrupted it ( drag drop , delete in
wrong order
i could easily recover them by correcting the code in
the code behind classes . where others had already taken the loss of a day
work and switched back to a backup version of there project .
I am a coder , and a coder is someone who can read and write code
regards
Michel Posseth [MCP]
Branco Medeiros said:
Stephany Young wrote:
<snip>
On the other side, some of then just "abuse" the fact that they're
wizard managed. For instance, a programmer would try to use inheritance
to his/her advantage, something that current wizardry doesn't seem to
like.
An example of this is the structure of the DataTables generated by the
DataSet wizard. It is very difficult to introduce common behavior to
all your DataTables -- even taking advantage of partial classes --
because they're direct descendants of System.DataTable.
Just as you can customize the inheritancy of TableAdapters, I suppose
the DataTables could also descend from a custom class.
The consequence is that you'll see tons of
redundant-repeating-extremely long-winded lines of code, something that
a "real" programmer would try to encapsulate... The code seems
definitely for wizard eyes, only... I am using a wizard generated
DataSet with some 20 tables, and the wizard code really looks like a
complete mess.
My R$ 0,05 (as for current currency)
Regards,
Branco.