-
Content Count
33 -
Joined
-
Last visited
Community Reputation
3 NeutralAbout Nicolò Blunda
- Birthday 03/09/1965
Technical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
1654 profile views
-
Thank you very much. After a lot of investigation, i see more delay time (5/6 seconds), with NONE form showed (SpalsScreen apart) is cuased ONLY by Application.Run line. The Forms creations take very little time (0,5/0,7 seconds). Main form have two processes with potentially criticity (access to online websercices for autentication), but in different thread. So, I don't understand why the appearance of MainForm take so long time, and i don't know how to show it (as you suggest) with "gray aspect".
-
Thanks. But I call SplashForm.Close in the MainForm.Show event, NOT MainForm.Close (none sense...). And this works fine, showing SplashForm (freezed) until MainForm is visible. Otherwise, SplashForm colses before the long "blind" time, until MainForm is showed..
-
Thank to everyone! I want to emphatize some issues: Long time is effect of Application.run method. Above instruction, in DPR file (Form creation) are very fast. @Dalija Prasnikar: even showing Splash Foam BEFORE other Form creation, it appears, freezed, for very short time. The only way to show it is to insert Close or Free method in MainForm.OnShow event. @DJSox: what method I can use for repaintig Splash Form?
-
Thank you very much!!!!
-
Hello. My app contains many Forms. None Form take a long time to be create and show (i've checked this...). But the app is very slow to open. I've tryed with SplashForm. This code, in .DPR file, works fine (the FormSplash.Close method is inside OnShow method of MainForm). But, SpalshForm seems to be frozen until Main Form is shown: if i insert a TImage with TBitmapListAnimation (to show classical "wait wheel") animation freezes until MainForm close SpashForm. Thank you. BEGIN Application.Initialize; Application.Title:= 'My Slow App'; FormSplash:= TFormSplash.Create(Application); try Application.CreateForm(TFormMain, FormMain); Application.CreateForm(TForm2, Form2); Application.CreateForm(TForm3, Form3); Application.CreateForm(TForm4, Form4); Application.CreateForm(TForm5, Form5); FormSplash.Show; Application.ProcessMessages; finally end; Application.Run; END.
-
Thank you very much!!!!!!!!
-
Hi. There is a way to pack and deploy universal macOS app, compiled for both INTEL and ARM processors? Actually, I see only way to deploy 2 differents folder/app. Thanks a lot.
-
Hi. My app is compiled with Delphi 12 for Android. Many devices (Tablet) appear NOT compatible in GooglePlay, while, in "Developer" release, APK is perfectly installing and running. Example. Lenovo Tab P11 2nd gen. is compatible, Lenovo Tab P11 PRO 2nd gen is not... It is a targetSdkVersion problem? Thanks
-
Wrong controls position at design time (view don't save)
Nicolò Blunda replied to Nicolò Blunda's topic in Cross-platform
Thank you very much. I guess problem is generated from value "scale" in Alignement property inside Master view, necessary to turn responsive Desktop views of application. So, i try set to "none" for this property in Android views. I will say what is effect! -
Upgrade XCode has erased some file (now, I don't rember name) in mac Library folder, neeeded at linking time. So, I already cleared old SDK profile in Embarcadero and I clear XCode from remote machine. Before install old SDK/XCode (working), and download again files to restore Embarcadero deployment profile, I search to know if this oparation can bypass installation of XCode (my backup machine compile and deploy whit old XCode profile (not erased...).
-
Wrong controls position at design time (view don't save)
Nicolò Blunda posted a topic in Cross-platform
Hi. When I open my project, the different views (Windows, macOS, Android 10'') always appear different from the ones I saved before closing the project. The alignment and size of many controls (TPanel, TButtonn, etc...) revert to some values I didn't set. The strange thing is that the FMX files don't seem to change (making a backup doesn't help)... In particular, my Android views are set, by the "Orientation" property of the project, to open ONLY in landscape mode. But, when I open the project, the view is always in portrait mode and, after rotating it, the controls appear in a different position than I set. It's very, very frustrating! -
Yes, I mean SDK manager (accessible from path I wrote). After upgrade XCode on remote mac I have download new SDK and delete old in SDK manager. But new XCode generate some issue, so I woud like to point to previous (still present in folder of developement machine) without downgrade XCode from remote and re-transefer his files...
-
Hello. There is a way to avoid download all SDK files from macOS (remote) machine if the corrisponding item is (for mistake) deleted from Tools->Optionts->Deployment->Provisioning form? Folder with SDK files is still in my windows development PC. Do configuration file exists to restore pointment to this folder? Thank you.
-
I have find the solution. In MyForm.Create I insert this Constraints.MinWidth := MyForm.Width; Constraints.MinHeight:= MyForm.Height; Note that if MyForm.Position property is set to Designed, this affects only MyForm aspect under Windows OS and not under macOS.