Hans J. Ellingsgaard
Members-
Content Count
91 -
Joined
-
Last visited
Community Reputation
21 ExcellentTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Wrong controls position at design time (view don't save)
Hans J. Ellingsgaard replied to Nicolò Blunda's topic in Cross-platform
I had some similar experiences where I couldn't get it to work satisfactorily. We have customers with all sizes of phones and tablets. I ended up writing most of the positioning and sizes of controls in code, only controls that are aligned to client are not set in code. -
No, as far as I know, you have to download it to the phone and install it under the Encryption & credentials window. I had this problem with a client, that couldn't acces there webservice with some older handheld terminals, after they got a new DigiCert certificate. If we manually installed the certificate, some of the terminals were working again, but for the oldest version of terminals, it wasn't even possible to install the certificate, as it was not compatible with the Android version. After some research we ended up buying a certificate from GoDaddy, that was compatible with the older Android devices.
-
Yes, Digicert is a well known provider of certificates, but I would check it anyway. When searching for errors, should work is not good enough, double check everything to make shure that it really works. Some older Android devices does not get there certificates updated, and Digicert has issued some new certificates, that's not working on older devices. You can check the certificates from here: Open your device's Settings app. Tap Security & privacy More security settings Encryption & credentials. Under "Credential storage":
-
Have you checked if your certificate is under known certificates on your Android device? If it's not, you'll have to install it.
-
installed Interbase2020 Update 5 but always starts 4
Hans J. Ellingsgaard replied to Joe Sansalone's topic in Databases
If you have multiple instanses of the server on same computer, you will need to use different ports for each instance. The first instance normally get port 3050 and the next 3051, if you not specifically choose some other ports. Can it be that you have multiple instances running and you connect to the first installed via port 3050? -
installed Interbase2020 Update 5 but always starts 4
Hans J. Ellingsgaard replied to Joe Sansalone's topic in Databases
Do you use as embedded or as a server? -
Use Interbase Developer license on 2 Windows PCs?
Hans J. Ellingsgaard replied to GrumpyNoMore's topic in Databases
You will need to open port 3050 in the firewall on the server. -
That should mean it is Ok with spaces in the path, but AFAIK SQLite is a file based db, not a RDBMS, so just to be 100% safe, I would try to place the db file in a path without spaces.
-
You have a connection path with spaces, are you shure the db component can handle spaces? Not all do.
-
I think this shold be dealt with at the OS level with user rights. What happens if the user open the file explorer, and start browsing folders from there?
-
Storing and Displaying DateTime Values in SQLite DB
Hans J. Ellingsgaard replied to new_x's topic in Databases
If you store the values as a Timestamp field, you can show it in the grid with entrance_time.AsDateTime -
Recommendation for library/components for Interbase structure changes
Hans J. Ellingsgaard replied to dcroghan's topic in Databases
IBExpert has a tool to compare the metadata of two databases, and generate a update script with the differences. -
Using Dymo LabelWriter from Delphi
Hans J. Ellingsgaard replied to Cherns's topic in Delphi Third-Party
Can't you design the badge in a report designer, like Fast Report, and print directly to the printer driver? -
TFDMemTable - how to clear structure?
Hans J. Ellingsgaard replied to Jacek Laskowski's topic in Databases
When you are defining all the fields in runtime, why not also create the table in runtime?