Posts by Diego Borges • 171 points
4 posts
-
1
votes2
answers96
viewsA: Selector Casperjs [Caspererror]
Just to complement... Another simple way is to use the clickLabel(): this.clickLabel('Área restrita', 'a'); or adjust the CSS Path to: '#menu-top > li:nth-child(5) > a' or a third possibility:…
javascriptanswered Diego Borges 171 -
2
votes3
answers1491
viewsA: Add field at position I want in sql server
Usually, the error appears when you try to change the structure of a table that is already being used and has some reference, be it from FK, Constraint, Index, etc... Below, I list two options that…
-
2
votes4
answers1209
viewsA: Button with pause function
You can do this in several different ways! Control by database, Session or variables... Since you don’t have the urgency to process everything immediately, I suggest you run your processing via Task…
-
2
votes6
answers8712
viewsA: How and when to use Finally after a Try?
Another case where you can use Finally after Try/catch, is in the situation of manipulating files in the middle of your process and not to fill the code with File.Delete, you can just clear the…