Posts by Arthuro Verissimo • 61 points
10 posts
-
0
votes4
answers567
viewsA: How to know if the first character of a string is capitalized?
I didn’t test that code but it might help you kings[0].CompareTo(kings[0].ToString().ToUpper());
-
0
votes2
answers186
viewsA: Prevent the user from using the mainwindow window while another window is open
I was able to come up with a solution to the problem, using the mainwindow’s "Isenabled" property thus setting this proprierdade to "false" when calling the progressibar and then to "true" in the…
-
0
votes2
answers186
viewsQ: Prevent the user from using the mainwindow window while another window is open
I have a WPF application following the MVVM standard and in a certain part of the application I show a Progressbar that I implemented in a separate view for the user and, while this progressionBar…
-
1
votes1
answer73
viewsQ: How to Perform Label Visibility Binding according to the size of a List
I have a list of objects of type "Basicvariable", a ObservableCollection of them, and I need the Graphical Interface to display a Label when the number of items in this Collection exceeds 1000, I…
-
-1
votes1
answer61
viewsA: "Dynamic" data type is not the same as native data type
I ended up generating specific structs for each type of variable I would need, because to generate the HDF5 file it was necessary to allocate a specific space for each type, so I chose to make a…
-
1
votes1
answer61
viewsQ: "Dynamic" data type is not the same as native data type
I’m trying to create a struct that has one of its attributes having its type of dynamic or varied data, I need ( when running the struct constructor) to be defined the data type of it, and it should…
-
0
votes1
answer31
viewsA: I need to create a Compound dataset using HDF in C#
I managed to solve this, my code was right but forgot to give "Close" in dataspaceId and datasetId
-
2
votes1
answer31
viewsQ: I need to create a Compound dataset using HDF in C#
My application contains a list of Basicvariables and within each of the BV’s, I have a list of objects of class OPC_UA, which have 3 attributes, a datetime (which I will convert to a timestamp), a…
-
1
votes0
answers28
viewsQ: I need an HDF5 Dataset Attribute to be a string
Good afternoon, I’m trying to create some attributes for my datasets, I was able to create the attributes but at the time of setting their values (strings) I’m not getting, I tried several different…
-
0
votes0
answers99
viewsQ: Problem updating object properties with data Binding
I’m trying to update the properties of an object every time a character is added/removed from the textboxes but I’m not getting... I read several topics about databinding and everything seems to be…