Jump to content

cupboy

Members
  • Content Count

    20
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Thanks! I set it to Automatic (Screen PPI). I was also able to uncheck Scaled for the form. I'll have to do more testing but everything looks good so far. I'll have to try it with a standard monitor and see what happens. update: Set Scaled back to true since the bitmaps on the buttons were tiny otherwise and now they look normal.
  2. The form is rather small in the IDE making it hard to work with. Is there a way to adjust the size of the form in the IDE? Could I make it the same size as it is when the program is run? I am using version 11.2.
  3. cupboy

    Installed 11.2 on new computer now get error

    That did it. Thanks!
  4. Anyone know what this means and how to fix it? This version of Delphi works fine on my other computer. --------------------------- Error --------------------------- Unable to create process: Serving... All files should be loaded. Notifying the device. adb: failed to install F:\DelphiProjects\EOS\Android64\Debug\eos2024\bin\eos2024.apk: Failure [INSTALL_PAPerforming Incremental Install Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLI: /data/app/vmdl584433341.tmp/base.apk (at Binary XML file line #47): com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are presePerforming Streamed Install RSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLI: /data/app/vmdl628740358.tmp/base.apk (at Binary XML file line #47): com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present] --------------------------- OK ---------------------------
  5. cupboy

    Migrating Delphi to new device

    And check out what the other sales guy said: Thank you for reaching out! Unfortunately, both serial keys have not been on active maintenance for more than 365 days. You cannot renew the same licenses or increase the registration limits. Warm Regards, Faraz Khattak Customer Renewals Representative E: faraz.khattak@idera.com
  6. cupboy

    Migrating Delphi to new device

    The confused sales lady thinks I want to buy a new license.
  7. cupboy

    Migrating Delphi to new device

    Thanks, but I found the files on an old hard drive. Of course now I get a registration limited exceeded and my sales guy has apparently found a better job elsewhere. update: By the way that Registered Products Portal doesn't work after your subscription expires.
  8. cupboy

    Migrating Delphi to new device

    delete
  9. cupboy

    Registration Limit

    I did send an email to renewals@idera.com but no response so far.
  10. cupboy

    Registration Limit

    It's a license for commercial development.
  11. cupboy

    Registration Limit

    Installing onto a new computer I hit this snag. Since I'm not a subscriber they will not fix this problem. Well, that's the reason I'm not a subscriber in the first place. Anyone know of a way around this or am I forever stuck keeping my old computer just for Delphi? Interestingly I had no problems installing and activating Office 2007.
  12. For doing ios or mac apps in firemonkey does the processor in the macbook matter? Will it work with M3? I'm using version 11.2 and no longer a subscriber.
  13. Get this message when opening the IDE. I haven't even selected a project yet. Can't clear the message. It will just re-appear. Delphi 11.2. Searched the registry and there is nothing called Default.Personality. There is something called Delphi.Personality. Searched the web too. This seems to only be happening to me. After killing Delphi using Task Manger and re-starting the message has gone away. Maybe it was just a one-time thing?
  14. Here is my code: function TfrmMain.SetScreenBrightness(Brightness: Byte):System.string; var iResult : Byte; MobilePermissions1 : TMobilePermissions; begin iResult := 0; {$IFDEF ANDROID} MobilePermissions1 := TMobilePermissions.Create(self); MobilePermissions1.Signature.WriteSettings := True; MobilePermissions1.Apply; if HasPermission('android.permission.WRITE_SETTINGS') then begin TJSettings_System.JavaClass.putInt( TAndroidHelper.Context.getContentResolver, TJSettings_System.JavaClass.SCREEN_BRIGHTNESS, Brightness); iResult := 1; end else ShowMessage('Write Permissions failure!'); {$ENDIF} end; All I get when I run it on the Android 12 phone is the Write Permissions failure message. Any idea about what the cause would be? On the phone I have set Modify system settings to Allowed ... still fails. Well nevermind it is fixed now. Here is the fix: // if HasPermission('android.permission.WRITE_SETTINGS') then if TJSettings_System.JavaClass.canWrite(TAndroidHelper.Context) then GitHub - adrianosantostreina/MobilePermissions: This is a component to turn more easy the request permission in Android 8.x or later. THIS TOPIC CAN BE DELETED (I don't seem to be able to do it myself... thanks)
  15. cupboy

    Current subscription required to download ?

    RAD Studio, Delphi, C++Builder 10.3.1 ISO from https://my.embarcadero.com/#downloadDetail/549 What's really dumb is I used to have this but deleted it thinking I could just download it again if I ever needed it again. Bad idea.
×