-
Content Count
60 -
Joined
-
Last visited
Everything posted by Anna Blanca
-
So, i getted manuals how synchronize using NetHTTPClient in my app. But i need how adapting it for IdFTPClient. When i use this component in my app, it freezing all program and my app stopping work. How fix it and unfreezing my app?
-
Hello. When i use component NetHTTPClient in my Android app, my app freezing and not responce on my touches. Sample code: Payload := TMemoryStream.Create; NetHTTPClient1.Get('https://sample.com', Payload); Payload.Free; Crashing my app. Also, in Windows apps all working normal. And a month ago, NetHTTPClient worked normal in Android apps too.
-
And i have problems, with compilling and deploying my apps in Delphi. One app compilling and deploying normal, but another crashing. Shoing big green window: Troubleshooting No Android Targets Listed Cannot Run on a Device or Emulator Cannot Deploy
-
Hmmm, i'm using Delphi 12 CE. But a month ago all worked all right, and i not changed anithing - not Delphi, not my phone.
-
But that's nothing new..,
-
Thak you, but when maked it, my app not crashing, but just nothing happen here. Memo1 standing empty.
-
This solution get error like your last solution.
-
This solution not working: my IDE markering by red TTask.
-
I tryed this code, and my app not crashed - but is not working, one get me message about error: Access violation at address C0ABFB02, accessing address 0000008C.
-
Upd: i added my test project, for full picture.
-
Hi. I used RAD Studio on my PC and connected my phone through USB for debugging/deploying my apps. But when i connected this phone to a another PC with RAD Studio, my first PC is no connecting for debug. When i connect my phone to my first PC, pop-up for permissing debugging no appear on the phone's screen. And problem exactly is not in phone - when i use VS Code on my first PC, pop-up on my phone appearing normal. How i can fix this problem?
-
Hi. I maked sample Android Service, and is's worked normal, but when i added component TTimer on the Android Service form, my app freezed and crashed. What i'm doing wrong? I attach archive whith project of my app, here:
-
I can make photo and send it on FTP, or something, that's not so complex.
-
So, i must download this LS.AndroidTimer.pas and add it in my project, or what?
-
I'm guessing if it's FMX, but how i can use TCameraComponent in background-mode?
-
O'K, but i can't add CameraComponent, how fix it? And why FMX doesn't work in Android Service?
-
What's TAndroidTimer? So, I need Indy components too, and TNetHTTPClient, and more other components.
-
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?
-
So, i must open my DPROJ file with Notepad++ and edit it?
-
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
-
Thanks for your work. It's better!
-
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?
-
I want make ShellLing object only with Delphi resources. How i can make it?
-
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.
-
O'K, but LNK-file not created. But earlier, in Delphi 11, it's created normal.