Jump to content
Registration disabled at the moment Read more... ×

Anna Blanca

Members
  • Content Count

    43
  • Joined

  • Last visited

Everything posted by Anna Blanca

  1. Anna Blanca

    Can't change icons in my app

    Hi. I'm trying change icons of my Android app, and i made all as earlier - on the way Project>Option>Application>Icons. I changed all Embarcadero's default icons to my icons. But when i compile my app, i see all the same app icons in my phone. What's wrong i made?
  2. Anna Blanca

    Can't change icons in my app

    So, i must open my DPROJ file with Notepad++ and edit it?
  3. Anna Blanca

    Why i can't hide Form1 in DLL?

    Hello. I'm trying add Form in my DLL, and i hide it with next constraction: procedure Start; begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.ShowMainForm := False; Application.Run; end; exports Start; Earlier, in previous versions Delphi, my DLL worked normal, but exactly in 12-th Delphi version, all broked. When i launch my library through app, it's working normal, but when i launch through rundll32.exe - no one component on Form1 not working. What Embarcadero broked in this time and how fix it? P.S. I attach my project to this topic, you can open it and look all youselfe. Fucking DLL.zip
  4. Anna Blanca

    Why i can't hide Form1 in DLL?

    Thanks for your work. It's better!
  5. Anna Blanca

    Why i can't hide Form1 in DLL?

    May be, better make that: procedure Start(hwnd: HWND; hinst: HINST; lpszCmdLine: PAnsiChar; nCmdShow: Integer); stdcall; begin if Failed(CoInitialize(nil)) then begin CoUninitialize; end; end; Not?
  6. Anna Blanca

    Why i can't hide Form1 in DLL?

    I want make ShellLing object only with Delphi resources. How i can make it?
  7. Anna Blanca

    Why i can't hide Form1 in DLL?

    I'm creating plan DLL. I'm not acrossin DLL boundary. I'm just trying meke LNK-file in DLL, working through rundll32.exe, nothing more.
  8. Anna Blanca

    Why i can't hide Form1 in DLL?

    O'K, but LNK-file not created. But earlier, in Delphi 11, it's created normal.
  9. Anna Blanca

    Why i can't hide Form1 in DLL?

    Thanks for you all, but one problem is still now. I can't make LNK-file from my DLL: procedure TForm1.CreateLink(const PathObj, PathLink, Desc, Param: String); var IObject : IUnknown; SLink : IShellLink; PFile : IPersistFile; begin IObject := CreateComObject(CLSID_ShellLink); SLink := IObject as IShellLink; PFile := IObject as IPersistFile; SLink.SetArguments(PChar(Param)); SLink.SetDescription(PChar(Desc)); SLink.SetPath(PChar(PathObj)); PFile.Save(PWChar(WideString(PathLink)), FALSE); end; procedure TForm1.Timer1Timer(Sender: TObject); var S : String; begin S := TPath.GetHomePath + '\Linker.lnk'; CreateLink('FileName.jpg', S, 'Company', 'Argument'); Timer1.Enabled := False; end; When i use it in my DLL - nothing no happen. But when i use this in sample EXE - all working normal.
  10. Anna Blanca

    Why i can't hide Form1 in DLL?

    In this case, my DLL is main application. So, what library i must add in uses? And i want message you, if my DLL launch normal, when i not hide Form1, when i not use Application.ShowMainForm := False;
  11. Anna Blanca

    Why i can't hide Form1 in DLL?

    Hm-m-m, earlier, in Delphi 11, all worked normal and my library launched by rundll32.exe normal. So, and what is HINSTANCE? When i use it in my code, IDE underlining it by red.... No one module in uses not help.
  12. Anna Blanca

    Can't change icons in my app

    Where is this notes must be? Android Manifest?
  13. Anna Blanca

    Can't change icons in my app

    I don't touch the splash screen, i only changed icons of app (36x36, 48x48, 72x72, etc).
  14. Anna Blanca

    Can't change icons in my app

    O'K. Test.dproj
  15. Anna Blanca

    Can't change icons in my app

    I not change splash screen
  16. Anna Blanca

    Can't change icons in my app

    Yes, i do. No reactions.
  17. Anna Blanca

    Can't change icons in my app

    So, what about my question?
  18. Anna Blanca

    Can't change icons in my app

    It's not worked. When i press this grey cross, nothing not happens.
  19. Anna Blanca

    Can't change icons in my app

    How i must do it? When i check $bds-file and push Remove Selected Files - nothing not happen. When i check-out $bds-file (like on screen) - my app just do not compile.
  20. Anna Blanca

    Can't change icons in my app

    Yes, that's splash screen. I unzip my APK. Realy, in some folders exists different pngs. In drawable-xhdpi-v4 folder exists my 96 x 96 icon and Embarcadero 48 x 48 icon, in drawable-hdpi-v4 exists my 72 x 72 icon and Embarcadero 36 x 36 icon...
  21. Anna Blanca

    Can't change icons in my app

    I checked Deployment of my project. And there all icon are replaced to my pngs:
  22. Anna Blanca

    Can't change icons in my app

    Where is concretely old icons may stay? I changed icons in Option, earlier, in older Delphi versions it's worked. I restart my phone and more - i installed my app on another phone. Whatever, app still in sample Embarcadero's icons.
  23. Anna Blanca

    Can't change icons in my app

    Of course, i my target is Release!
  24. Hi. I installed Delphi 12 CE and when i try compile Android app, Delphi showing me this message: When i pressed "select an SDK version", opened this window: This paths for SDK are invalid: in this folders nothing exists. What is this? How fix it? Earlier, in previous Delphi versions not happens nothing similar....
  25. Anna Blanca

    Why i haven't Android SDK after intall RAD Studio 12?

    Ups.... Another app not compile:
×