I have a problem, when I want to go concatenating it is the variable of type string temp every time the cycle is repeated this variable is restarted. Why is this happening and what can I do to solve it?
void processData( int *digits, int digit...
I have to make a form that when I press a button I add a product to a table for a purchase ticket
For that use the following code
Private Sub AMERICANO_Click()
Worksheets("Ticket_print").Activate
Dim L As Variant
Dim MyCount As Long
L = Hoja2...
I have a for loop that does not work properly for me. If I do a Debug, the increment always resets to 0 so it only reaches 1.
Here is part of the code:
First I loop % for to call the userID
var userDataId = client.GetUser(D...
My question is How can I compare the strings that I have within a arraylist<String> so that it shows me the ones that are repeated? BUT these strings are irregular, for example: I have the following files in a folder.
I h...
I wish that when selecting the text of a radio button the corresponding button is assigned or selected. The nomenclature is usually that the name that we assign to label for must be the equivalent of the name of id of inp...
My intention is for a given matrix, go through the row and each value [i,j] subtract the value [i,j-1] . Once traveled, if the value is negative, it accumulates it in [i,2] and if it is positive in [i,1] .
Here's an...
I have the following problem:
With the code I will paste below, I charge my .xlsx. In it I have columns and in them different values. I add one more column that will have a specific value for each row. My problem is that I do it individually...
My question is How can I show only the records I have in my hashmap without repeating them? Ex: I have a arraylist<String> loaded with data, I also have a text file loaded with data inside.
File content .txt :
25, Argenti...
I have been working for a few days with a function that operates with data of 2 document .csv . There are many steps, but basically what it does is take identifying numbers (ID) that were categorized from lowest to highest according to the...