cupboy
Members-
Content Count
20 -
Joined
-
Last visited
Everything posted by cupboy
-
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.
-
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.
-
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 ---------------------------
-
That did it. Thanks!
-
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
-
The confused sales lady thinks I want to buy a new license.
-
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.
-
delete
-
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.
-
I did send an email to renewals@idera.com but no response so far.
-
It's a license for commercial development.
-
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.
-
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?
-
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)
-
I cannot download anything anymore. Even stuff I already own. It just says Update Subscription Expired Request Renewal Quote. This seems illegal to me since I already bought the products. I don't think it used to work this way.
-
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.
-
The downloads.embarcadero.com site no longer works. Is there a new site now?
-
Where is the workaround currently located? Or can someone just post the steps here. All of the steps. Not just some of them. Thanks!
-
Anyone have a link for the newly released version? All I can find is a link to a trial version. Here is a link with some info about the release, but no download link: http://docwiki.embarcadero.com/RADStudio/Sydney/en/10.4_Sydney_-_Release_2 Perhaps it isn't released yet. Who knows?