Jump to content

MikeMon

Members
  • Content Count

    147
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MikeMon

  1. MikeMon

    TLabel-like Component with HTML Tags

    Is there a TLabel-like component in Firemonkey that can have HTML tags in its text (or any other) property? I know there are third-party components (TMSSoftware, etc.) out there. If there isn't any, would anyone suggest any 3rd-party solutions?
  2. MikeMon

    TLabel-like Component with HTML Tags

    Hi Alexander Thank you for your assistance. Unfortunately, the HTML Component Library costs a lot. TMS is much cheaper with a lot of other components included. Are there any free solutions?
  3. MikeMon

    Android App Bundle setup

    How is the Android App Bundle setup on Delphi 10.3.3?
  4. MikeMon

    Android App Bundle setup

    OK. Just found out how:
  5. Is there an out-of-the-box way for the screen to move up when the keyboard pops up and covers the focused control, e.g. edit boxes, memos, etc.? Currently we use a vertical scroll box and plenty of code (onVirtualKeyboardShown & onVirtualKeyboardHidden) we found online.
  6. MikeMon

    Keyboard Covers the Focused Controls

    Hi John I never tried it because the app is both for Android and iOS. So, I'm using the solution provided by Embarcadero.
  7. MikeMon

    Keyboard Covers the Focused Controls

    I believe it should happen automatically and no code should be involved. Anything focused but covered by the popped up keyboard should be scrolled up automatically to be visible.
  8. MikeMon

    Keyboard Covers the Focused Controls

    I'm curious, too.
  9. MikeMon

    Keyboard Covers the Focused Controls

    Too complicated for something that should be the norm without using any code.
  10. Hi I'm trying to connect by using IBConsole to an encrypted Interbase XE3 (version 11.0.4.828) database with the SYSDSO username to change the SEP password but I keep on getting the following exception: "Your user name and password are not defined. Ask your database administrator to set up an Interbase login". FYI, when I connect to the server with the same SYSDSO credentials, I can connect just fine. Moreover, to encrypt the database, I've used the same SYSDSO credentials. What am I missing?
  11. I'm not talking about SYSDBA. I'm talking about SYSDSO;, the user that needs to be created to set up encryption.
  12. Hi After upgrading to Delphi 10.3.2, any Android app, including a blank app, is not running successfully on any Android device. I'm getting the following exception: "Unfortunately, Project1 has stopped." I'm using: - Android SDK 25.2.5 32bit, build-tools\29.0.2, platforms\android-29 - Android NDK r17b, platforms\android-28 Please, advise
  13. Hi The overwrite flag in the "Deployment" screen doesn't seem to have any affect. The only way the existing files are overwritten is if the new file is newer then the existing file. Sometimes, we need to copy updated versions of databases or files with the launch of new app versions. What we currently do during development is delete the app data and then uninstall the app, and THEN install the newer version. Is there something I'm missing? Is there another way? Kindly, advise
  14. Hi Andrew What I do is change the computer date to a future date, access the file so that its modified date changes to a future date, revert back to the current date and then install. That works fine. Not the best way, but it works. There should be an easier way. Obviously, everyone is using some sort of a workaround. There should be a 3rd value for the "Overwrite" flag: "Only if Newer". It should act like the "Always" acts now, and the "Always" should act like it says: ALWAYS overwrite.
  15. Hi Dave Thank you for your help again. How about when a user updates the app through the Play Store? is the old file overwritten by the new even if the new has an older date? How about iOS? How does that work?
  16. Hi Dave Thank you for your answer. I've revised both my SDK and NDK settings to the working settings I had on 10.3.1, i.e. SDK build tools 28.0.3, platform android-28 and NDK platform android-22. It still wasn't running. I unchecked the "Receive Push Notifications" in the "Entitlement List" and it started running fine. After that I used the SDK build tools to 29.0.2 and the SDK platform to android-29 and it worked fine as well. Thank you Dave once again for your valuable input.
  17. Hi Dave Thank you for your help. After winding back my build tools to 28.0.3, a blank app is now running OK. However, my existing app is still not running. I've attached the logcat log file. The app package name is cy.com.wagamama.ordercy. I can't pinpoint where the problem is exactly. log.txt
  18. HiI've been having problems with REST client calls on Delphi Rio 10.3.1. The problem actually started with Delphi Tokyo 10.2.1. Everything worked perfectly with Delphi Berlin 10.1.2. Not always, but quite often, I'm getting a TDSRestProtocolException exception on the client (which is running on windows) for the same REST call. The message is "HTTP/1.1 500 Internal Server Error" and the ResponseText is {"error":"[firedac][phys][ib]unavailable database"}.Has anyone come across this problem, or has a solution for it? Thank you in advance
  19. I resolved the problem by assigning Connected:= False to the TFDConnection during design-time on the Datasnap Server TDataModule and changing it to Connected:= True in the OnCreate method of the TDataModule. I'm not sure if it's really a bug, but that's how I resolved it. Thank you for your help @Dmitry Arefiev.
  20. Hi Dmitry Thank you for your answer. I know that the REST server is producing the error. But the same client with not a single change in code working with no errors compiled with Delphi 10.1.2, is getting this error compiled with Delphi 10.2.1 and above. Moreover, I checked the interbase log on the REST server and there are no errors.
×