I need to assign the value to a label , example: xrLabel1.text = "teste" , but I have multiple labels where only the number in the final example changes:
xrLabel1.text = "teste";
xrLabel2.text = "teste";
xrLabel3.text = "teste";
How...
I'm developing a system and need to capture a unique Smartphone identifier.
In this case, the person would access the site through the Smartphone and the site will capture some unique identifier of the device or even the browser.
I thought of...
I'm trying to build my first JAR using IntelliJ and Maven to manage the dependencies. I created the artifact and executed build , but when I run the program I get the following exception :
Exception in thread "main" java.lang.Securi...
I was able to create a perfect .xls file, but .csv can not, it follows the code I used to create .xls
$dadosXls = "";
$dadosXls .= " <table border='1' >";
$dadosXls .= " <tr>";
$dadosXls .= " <th&...
I am doing the following operation with an array in the R:
> m <- matrix(1:9, ncol = 3, nrow = 3)
> m
[,1] [,2] [,3]
[1,] 1 4 7
[2,] 2 5 8
[3,] 3 6 9
> m2 <- m
> for(i in 1:nrow(m)){
+ for(j...
I would like to know if you have already done or have an example that can link to the following problem:
I have a project that has the crud of books and a User controller with their respective views.
I made the normal email module as the g...
I'm developing a REST API using ASP.NET WebApi 2 and as I come from the old SOAP standard, I'm used to API-client type sharing . That is, when referencing my service in the client project, all types that are used in the API are created in the...