Posts by Andrey • 41 points
4 posts
-
0
votes1
answer138
viewsA: Change the Excel icon
The best way would be to create a shortcut of your spreadsheet, right-click on properties and change the icon, when you invoke the spreadsheet by c# vc will give the shortcut path, I’m not sure if…
-
3
votes1
answer114
viewsA: Filter words contained in Bindingsource
You have to make a loop to resort to the columns make the filter and use a If/Else to determine the number of rows returned in the DataGrid if it is equal to zero pass to the next one if it is…
-
0
votes3
answers52
viewsA: Does code always return the last character?
It is returning d pq you are accessing the last character Browsertype[whole Arry index] q in the above case is Browsertype.length -1 which is total of -1 positions
javascriptanswered Andrey 41 -
0
votes1
answer114
viewsA: Fill a Checked List Box with SQL Server values
Select I use so @"select Exer_nm from Exercicios Where Exer_type = @Exer_type" (without simple quotes in the understood parameter?) The method Cmd.parameters.Addwithvalue("@Excer_type",…