Posts by Please_Dont_Bully_Me_SO_Lords • 516 points
12 posts
-
1
votes4
answers2243
viewsA: Alternative to CPF (Foreign Users)
I believe that for your case, which already has an application ready, based on the CPF model, there is no point in entering into the theory of which the best and most secure type of identifier for…
-
1
votes1
answer208
viewsQ: Correct Nomenclature of User Groups of a System
I am designing a system that will have several modules. It is possible until these modules are separated into different applications. Then came a doubt I had before but I could not get the answer:…
-
0
votes1
answer105
viewsQ: Is it feasible to place an Idhttpserver in a Mobile App to receive instant messages from a remote server?
I intend to make an application that receives notifications without consulting the server at all times, and that is able to run in the background on Android. I will use the Firemoney platform, which…
-
1
votes6
answers1481
viewsA: Log system losing data, how to use Threads?
The best solution in this case is to develop a separate system that listens to a port via UDP on the computer where the log file is. When receiving a log request, this application puts this request…
-
0
votes2
answers722
viewsA: Get SQL before POST in a Zquery
Jack, I recommend you don’t use ZTable, only in very extreme cases. Play a ZQuery in the DataModule and assign to your connection. Then play a ZUpdateSQL and attribute it to ZQuery on the property…
-
3
votes1
answer132
viewsQ: How to create multiple homepage in a single portal in Plone?
In a Plone portal, as in any CMS, the content is inserted as images, files, folders, pages, news etc. All this is accessed through a "HOME" Home Page with menus and content that directs the user…
-
2
votes1
answer2848
viewsA: How to Convert UTF String to ANSI and Create ANSI Text File on an SSD?
OutputStreamWriter writer = new OutputStreamWriter( new FileOutputStream(file, true), "windows-1252" ); writer.append(textBody); writer.close(); …
-
4
votes1
answer2848
viewsQ: How to Convert UTF String to ANSI and Create ANSI Text File on an SSD?
I wrote an Android application using Java, so that users answer questions, which are then saved in a file. The problem is that this file is saved in UTF8. The end user will open this file on IBM…
-
0
votes3
answers5715
viewsQ: How to customize the Delphi editor?
I would like to get some tool to customize the Delphi editor. Although it is a great editor, with features integrated with the component interface that generates and updates code automatically;…
-
4
votes1
answer801
viewsA: How to Save Desktop Projects in Delphi?
use the menu Tools -> Options and mark the two options of Autosave options in Environment Options…
-
4
votes1
answer733
viewsA: How to identify which form has changed the property of a component?
The best way to do this (for me who do not know if there is an existing pattern) is to create a Helper for the zTable object. A helper is a Delphi class helper that you can use to add more…
delphianswered Please_Dont_Bully_Me_SO_Lords 516 -
15
votes4
answers6633
viewsQ: How to make the browser "Back" button work on an AJAX site?
I researched this topic a year ago when I made a site with features like $.load() and $.ajax() in AJAX/jQuery but did not get anything satisfactory that was not overly complex, and until today the…