Posts by André Ricardo • 29 points
5 posts
-
0
votes0
answers36
viewsQ: Update to all collection records in Mongodb
I have created a new field in my collection, but I would like to include this new field in all my collection records. I tried to use the script that way: db.getCollection('Contratos').update( {},…
mongodbasked André Ricardo 29 -
1
votes3
answers229
viewsQ: Convert the string "5.541.00" to int in C#
What is the correct way to convert a string with the text "5.541,88" to int? I’m trying to do it this way: int valor = int.Parse("5.541,88"); But I can’t because it returns the error: Input string…
-
0
votes1
answer103
viewsQ: Date filter problem in C# (Mongodb)
I’m trying to filter between dates in C# on a table in Mongodb. Expected results should be between 19/11/2020 and 20/11/2020. This is my code on C#: collection.Find<Admissao>(x =>…
-
-1
votes1
answer61
viewsQ: Date Component in American Standard in Angular
I have a Datepicker in my form that entering the date manually, the component is waiting for a date to be in American format and ends up with error. Selecting the date by the component itself, works…
-
1
votes1
answer170
viewsQ: HTML/CSS - Menus with sub-menus overlap
Hello, I have an application in Delphi that generates an HTML code from some register that the user does. I mount a tree of menus and sub-menus in an HTML, however, when there are many menus in the…