Posts by Roberto Novakosky • 33 points
5 posts
-
-2
votes3
answers633
viewsA: Tdictionary, how to destroy it
Yes, with Tobjectdictionary you can use . Create([doOwnsValues]) that free all Objects Automatically. [doOwnsValues] is not possible to Tdictionary, you need to do Manually.
-
0
votes2
answers19752
viewsA: Ascending and decreasing ordination in the Clientdataset
Depending on the version of Delphi you have can do so: ClientDataSet1.IndexFieldNames := 'UltimoNome:D;PrimeiroNome'; the statement ':D' indicates that it is in descending order, if leaving without…
delphianswered Roberto Novakosky 33 -
-2
votes4
answers26195
viewsA: What is a payload?
Payload in the context of your question is exactly how Onosendai answered, which means the entire JSON shown from your example. It’s always in the context of the question. I usually understand how…
-
3
votes3
answers41730
viewsA: Difference between Visual Studio Community, Enterprise and Code
The Visual Studio Code version works more like an advanced text editor for programming, including debug options. I compare as if it were a more advanced and evolving Notepad++ is very good and keeps…
-
1
votes2
answers1293
viewsA: Hide Subitems from a Listview?
You for using a TClientDataSet in remembrance. To hide the records you want not to appear, simply put a filter in the ClientDataSet and then on listview do .invalidate, and only load into the view…