Posts by Jovita • 143 points
5 posts
-
3
votes1
answer933
viewsQ: Synchronize Threads
I have a 3-thread application, this application involves a chemical process simulator, and I have to take some values of these processes. values come in a single object. The 3 threads make an…
-
3
votes4
answers4198
viewsA: How to save and upload data from a . txt to a gridview?
To complement Luis Alexandre’s response: I prefer to go through a dataGridView as follows: for(i=0;i < (SeuGrid.Rows.Count - 1);i++) { DataGridViewTextBoxCell tnome =…
-
2
votes2
answers172
viewsA: How to use Reflection on a COM object?
It may not have been so clear what I wanted, but I was able to sort of resolve it by forcing reflection and it turned out there was no need to catch the guy. foreach(PropertyDescriptor descricao in…
-
1
votes1
answer89
viewsQ: Access memory region that has already been displaced
I am in the final process of developing a program and I came across an error, I already spent some time researching and I could not solve the problem. About the program: In summary, the program…
-
5
votes2
answers172
viewsQ: How to use Reflection on a COM object?
I am trying to do a Reflection in a program, however, when the time to pick up the type of the object (Which is necessary for the Reflection) is returning "System. __Comobject", and this is not…