Jump to content

Nicolò Blunda

Members
  • Content Count

    35
  • Joined

  • Last visited

Community Reputation

3 Neutral

About Nicolò Blunda

  • Birthday 03/09/1965

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

1691 profile views
  1. Nicolò Blunda

    Insert an save item in ComboEdit at first position

    Find solution. Method "Append" instead "Add" can include new item at the top of drop list.
  2. Hi. I would like to sort the elements in a ComboEdit in the exact order of typing. That is... the combo should save the typing history of the inserted elements, with the last element in first position and so on... I don't see the sorted property to set the order of all the elements/items, which are, by default, sorted alphabetically. How can I do that?
  3. Nicolò Blunda

    SplashForm freeze

    Thank you!
  4. Nicolò Blunda

    SplashForm freeze

    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".
  5. Nicolò Blunda

    SplashForm freeze

    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..
  6. Nicolò Blunda

    SplashForm freeze

    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?
  7. Nicolò Blunda

    SplashForm freeze

    Thank you very much!!!!
  8. Nicolò Blunda

    SplashForm freeze

    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.
  9. Nicolò Blunda

    Universal macOS apps deploy

    Thank you very much!!!!!!!!
  10. Nicolò Blunda

    Universal macOS apps deploy

    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.
  11. Nicolò Blunda

    Devices not compatible GooglePlay

    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
  12. Nicolò Blunda

    Wrong controls position at design time (view don't save)

    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!
  13. Nicolò Blunda

    macOS SDK

    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...).
  14. 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!
  15. Nicolò Blunda

    macOS SDK

    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...
×