Posts by Isaac Junior • 136 points
5 posts
-
1
votes1
answer245
viewsA: I can’t call the function
If what you are trying to do is test the sorting algorithm, see if the code below helps you. using System; class Program { static void Main(string[] args) { int[] vetor = new int[0]; int index = 1;…
c#answered Isaac Junior 136 -
1
votes1
answer52
viewsA: Make each button, during the onclik event, trigger its own window?
Modify the javascript. Instead of : var win = window.open( '', 'pop', 'scrollbars=1,statusbar=1,menubar=0,resizable=1,width=800,height=600' ); use var win = window.open( '', '_blank',…
-
4
votes3
answers28024
viewsA: SUBSELECT vs. INNER JOIN
The mystery of how Sqlserver operates internally is difficult to solve. It is quite possible that in some cases the difference is only in syntax and Sql Server operates in the same way. But the…
-
1
votes1
answer183
viewsA: Gridview Asp NET disappears Sort after Click to perform Update
According to your code, after Sort, the session datatable is out of date. Any event that reloads returns to initial state. Anyway, every time Load is called, it will put the Grid in the initial…
-
2
votes3
answers522
viewsA: Receive backgroud-image attribute from a div
With the method below you can get both the attributes defined in the CSS and the attributes calculated by the browser. var elemento = document.getElementById("senderscore"); var estilo; if…