Posts by Marcelolx • 151 points
7 posts
-
3
votes1
answer307
viewsA: Github is not registering contributions
Run this command on the terminal git config --global user.name and see if 'Richard' or 'Richar2' appears, if 'Richard' appears, run the following command git config --global user.name "Richar2" and…
-
-1
votes3
answers977
viewsA: How to know the size of an object in memory?
If you use the eclipse, maybe this plugin will be useful to you https://www.eclipse.org/mat/ . It gives a full report and even allows you to find out if at any point in your application is occurring…
-
1
votes2
answers171
viewsA: How to reference methods that use array as an object in the console?
Yes, your second method is ok, it will return to the person who match the nameand surname. Regarding how you can initialize the first and the second method, I don’t quite understand your point, but…
-
1
votes3
answers3721
viewsA: Wait for Thread to finish to proceed with the code - Delphi
If you use Synchronize there inside the thread Execute, who will perform the work of executing the code block "Download" will be the main thread, ie in this case you kind of "killed" the use of the…
-
0
votes1
answer1264
viewsA: Send application data to Firebase - Delphi
Dude, you’ll have to consume firebase’s Rest API, so you can save/fetch this data. Has an open source project Firebase4delphi which is a library to consume the firebase REST API, there are some…
-
3
votes1
answer523
viewsQ: Replication of a database
I have read some articles on database replication and mirroring, but a doubt I still have, and I did not find a "concrete" answer would refer and update the database. For example: I have MASTER and…
-
1
votes0
answers2253
viewsQ: Antivirus blocking access to camera
I’m having trouble accessing the Webcam through Delphi, so I searched the internet for some components and found the following that I leave on the link below: Directx Delphi Webcam Capture Example…