Posts by San Nunes • 41 points
4 posts
-
1
votes0
answers47
viewsQ: Problems with input and output in the C language in Visual Studio
Below I have a code simple in C, the problem is that if I leave as is it does not print the received name on the screen, but when I change the scanf_s for scanf it works normally. What would be the…
-
0
votes2
answers68
viewsQ: Create an Angular filter with smart table
I’m starting now with Angular, and I don’t have much knowledge, I wonder if someone with more knowledge can help me make an Angular filter with Smart Table. Ex: I have a text box that will retrieve…
-
1
votes0
answers26
viewsQ: Reading and Xml Data Recovery
I have the following question... I am reading an Xml, and to get the values of the nodes I use ... public class Produto { [XmlElement("PRODUTO")] public string produto; } I would like a way to…
-
1
votes2
answers54
viewsQ: Event call at another event
I have in my code the event dgvCellValueChanged that will be triggered when some value of the label is changed, it calculates the value of column 0 * column 1( Value 1 * Value 2) and assigns the…