Click here to Skip to main content
15,896,421 members
Home / Discussions / C#
   

C#

 
QuestionPrevent DataGridView to move to next row after edit? Pin
Dragan Matic18-Aug-07 0:25
Dragan Matic18-Aug-07 0:25 
AnswerRe: Prevent DataGridView to move to next row after edit? Pin
Muammar©18-Aug-07 9:46
Muammar©18-Aug-07 9:46 
GeneralRe: Prevent DataGridView to move to next row after edit? Pin
Dragan Matic19-Aug-07 0:31
Dragan Matic19-Aug-07 0:31 
Question'using' vs fully qualified types Pin
Malcolm Smart18-Aug-07 0:22
Malcolm Smart18-Aug-07 0:22 
AnswerRe: 'using' vs fully qualified types Pin
Christian Graus18-Aug-07 0:52
protectorChristian Graus18-Aug-07 0:52 
GeneralRe: 'using' vs fully qualified types Pin
Malcolm Smart18-Aug-07 0:54
Malcolm Smart18-Aug-07 0:54 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 10:22
mvePIEBALDconsult18-Aug-07 10:22 
GeneralRe: 'using' vs fully qualified types Pin
Christian Graus18-Aug-07 11:25
protectorChristian Graus18-Aug-07 11:25 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 11:35
mvePIEBALDconsult18-Aug-07 11:35 
GeneralRe: 'using' vs fully qualified types Pin
Colin Angus Mackay18-Aug-07 13:26
Colin Angus Mackay18-Aug-07 13:26 
GeneralRe: 'using' vs fully qualified types Pin
Colin Angus Mackay18-Aug-07 13:29
Colin Angus Mackay18-Aug-07 13:29 
GeneralRe: 'using' vs fully qualified types Pin
Mark Churchill18-Aug-07 16:05
Mark Churchill18-Aug-07 16:05 
AnswerRe: 'using' vs fully qualified types Pin
Keith Barrow18-Aug-07 3:12
professionalKeith Barrow18-Aug-07 3:12 
GeneralRe: 'using' vs fully qualified types Pin
Malcolm Smart18-Aug-07 1:12
Malcolm Smart18-Aug-07 1:12 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 10:39
mvePIEBALDconsult18-Aug-07 10:39 
GeneralRe: 'using' vs fully qualified types Pin
Colin Angus Mackay18-Aug-07 13:36
Colin Angus Mackay18-Aug-07 13:36 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 18:40
mvePIEBALDconsult18-Aug-07 18:40 
GeneralRe: 'using' vs fully qualified types Pin
Colin Angus Mackay19-Aug-07 0:06
Colin Angus Mackay19-Aug-07 0:06 
AnswerRe: 'using' vs fully qualified types Pin
Paul Conrad18-Aug-07 3:29
professionalPaul Conrad18-Aug-07 3:29 
AnswerRe: 'using' vs fully qualified types Pin
Guffa18-Aug-07 6:24
Guffa18-Aug-07 6:24 
AnswerRe: 'using' vs fully qualified types Pin
Luc Pattyn18-Aug-07 7:43
sitebuilderLuc Pattyn18-Aug-07 7:43 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 12:28
mvePIEBALDconsult18-Aug-07 12:28 
GeneralRe: 'using' vs fully qualified types Pin
Luc Pattyn18-Aug-07 12:53
sitebuilderLuc Pattyn18-Aug-07 12:53 
GeneralRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 18:49
mvePIEBALDconsult18-Aug-07 18:49 
AnswerRe: 'using' vs fully qualified types Pin
PIEBALDconsult18-Aug-07 9:52
mvePIEBALDconsult18-Aug-07 9:52 
The using directive is merely a crutch for inexperienced programmers (hence its use in templates and other pieces of bad code). The only time I use a using directive is to make an alias of a very long namespace (and then very rarely).

I very much dislike seeing a snippet of code (perhaps posted on here) that refers to some Widget, and I have no idea where that type of Widget came from.

Or someone answering a question by saying, "You should use a Widget." -- without saying where the blasted thing resides!

Always use a fully-qualified name and you'll never be misunderstood.

Were I in charge, the using directive would be the first against the wall.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.