ginnix
Members-
Content Count
23 -
Joined
-
Last visited
Community Reputation
2 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
When is the inline release?
-
I have Rad Studio 12 with the new patch. When I try to install the Android runtime using Manage features it shows operation successful but nothing gets installed. I also checked C++, same thing, operation successfully but nothing gets installed. Any info would help.
-
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
It's incredible this is still down. -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
My problem is, I went to install C++ and it uninstalled my Android then it could not connect to the server. Also, C++ never installed since it could not connect to the servers. This happened about a week ago when the servers were down which I did not know about. How do I install the android runtime? If I use the ISO it wants to uninstall everything. My original install was using the web version. Thanks -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
So, it has been down now for 2 weeks? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Any eta on when this is going to be fixed? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Just tried Rad Studio Wiki and it is also working for me. Hope they have this all fixed up soon. -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Why is it taking so long to get this working? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
How long has it been down now? I just noticed it two days ago, still down for me. -
I am using 11.2 and XCode 14 beta 6 and have successfully submitted my program to the app store. Just waiting for review and hopefully it gets accepted. Note: This is on Ventura Beta. Thanks
-
MacOS: How to remove ambiguous Developer ID certificates?
ginnix replied to Alexander Halser's topic in Cross-platform
You can delete them using keychain on your Mac. -
Hi All, I have this record Type type TCustomer= record CompanyName:String[255]; SpotsAllocated:Integer; LicensePlates:String[255]; Parked:string[255]; end; var myFile:File of TCustomer; CompanyDataBase:array[1..100] of TCustomer; To save the information once the record is populated I use AssignFile(F, 'c:\tmp\test.txt'); Rewrite(F); for i := Low(CompanyDataBase) to High(CompanyDataBase) do Write(F, CompanyDataBase); CloseFile(F); This seems to work, I can see the data in the text file. My problem is reading this back. I am stuck on how to read the data back into the program. Any tips appreciated. Thanks
-
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
There seems to be a problem with Skia and GlobalUseMetal under ios when you use both in a project. The problem happens when you send the image to the photos app. if not TPlatformServices.Current.SupportsPlatformService(IFMXPhotoLibrary, Service) then exit; Service.AddImageToSavedPhotosAlbum(Image1.Bitmap); The colors are wrong when you view the bitmap in Photos Thanks -
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
It does not seem to work with the CameraComponent. When I use Skia all the colors are wrong. When I disable Skia everything works. -
Make sure you have set all the right permissions for your app.