Posts by korbes • 243 points
4 posts
-
2
votes1
answer213
viewsA: How to implement 'check in' in tfs 2012 only approved by the reviewer?
Following what is said in this article: http://www.colinsalmcorner.com/2012/12/custom-code-review-checkin-policy.html, you need to create a custom policy. And that’s exactly what the author did, and…
-
3
votes5
answers436
viewsA: Refactoring: When is a method "too big"?
It has at least two strong reasons for breaking one method into other, smaller methods: reusability and readability. In your case, you mention that you will not reuse this code elsewhere. This…
-
1
votes3
answers308
viewsA: How to "create" a variable in "Runtime"?
What you want to create is a symbol table for your interpreter. At the lower level, this is a string map (variable names) for memory addresses: std::map<std::string, void*> tabelaSimbolos; In…
-
5
votes2
answers1187
viewsA: How to edit data from a Table after postback in ASP.NET?
Zignd, look over here: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.table(v=vs.110). aspx It is Important to Remember that any programmatic addition or modification of table…