Posts by Antonio Rafael da Silva Filho • 199 points
8 posts
-
3
votes1
answer44
viewsQ: Undo Editingcontrolshowing
I have a Datagrid in which a certain column can only be inserted numbers, so I used "Editingcontrolshowing" to evaluate the user input in this column and only allow numbers. string columnName =…
c#asked Antonio Rafael da Silva Filho 199 -
2
votes1
answer439
viewsQ: Store vector in Sqlite
I am creating an application in C# that must have a database. At first I’m thinking of using Sqlite for simplicity. But for each data entered in my bank must have : Identifying (int, char, bool)...…
-
5
votes1
answer65
viewsQ: How to use Bitconverter.Todouble bytes
I have an interface that sends a reference value to a microcontroller. I need to send the values in bytes because these values will be saved in the memory of the microcontroller. On the interface,…
-
1
votes3
answers329
viewsA: Pass Controls to a function
I was able to solve the problem by gathering everyone’s information. Thanks to @Meuchapeu and @rocmartins. I will leave my solution here for future doubts. The problem was that my Form1 is composed…
-
2
votes3
answers329
viewsQ: Pass Controls to a function
I have an interface in Visual C#. In this interface I have a Class called T50 that contains all the variables I need. I have already implemented a button that saves the object created by the T50…
-
1
votes0
answers118
viewsQ: Tortoisesvn x Riouxsvn (repository back-up)
I’m starting to work with version control using Tortoisesvn, and Riouxsnv as a repository. It happens that sometimes I need to be a few days without internet access, I would like to be able to…
tortoisesvnasked Antonio Rafael da Silva Filho 199 -
1
votes1
answer1855
viewsQ: Tortoisesvn revert to an earlier version
I have a code and I am using the version control Tortoise. I started from version 1 and now I am in version 10. But I realized I have a problem and I need to get my code back to revision 6. I go to…
tortoisesvnasked Antonio Rafael da Silva Filho 199 -
4
votes2
answers801
viewsQ: How to change the value of a property given its name
In my program I have some classes where data is stored. For example Class1.alfa.dado = 66; Class1.beta.dado = 56; Class1.gama.dado = 37; The user will select in a Combobox one of the options you…