Juan Young
Members-
Content Count
11 -
Joined
-
Last visited
Community Reputation
0 Neutral-
[help] Force close apps Android 11 Samsung S20 in Delphi rio 10.3.3
Juan Young replied to Juan Young's topic in FMX
Already solve sorry for bother... solve link -
[help] Force close apps Android 11 Samsung S20 in Delphi rio 10.3.3
Juan Young posted a topic in FMX
Dear All, I'm recently built new computer and install delphi 10.3.3 community edition and i have this problem for some device like samsung S20. force close. But my old Computer delphi same version is not problem... may be i'm forgot to setting delphi.. New Project is force close too.. Please help me thx before.. regard juan -
hi, i have solve this problem... just Convert .APP to IPA Manually 1. Create a folder called Payload 2. Place the .app folder inside of that 3. Zip up the Payload folder using normal compression 4. Then rename the file with a .ipa extension Regard.
-
Dear all, After i reroll apple developer, i tried compile old apps but show error... i'm try revoke all and assign still error.. any body help me? [PAClient Error] Error: E0776 2020-12-20 13:53:06.516 xcodebuild[1739:66673] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/6m/_v9t4kf97wn94cvxzc6t6vf40000gn/T/Arbit_2020-12-20_13-53-06.418.xcdistributionlogs'. [PAClient Error] Error: E0776 Exported Arbit to: /Users/Drache/PAServer/scratch-dir/sir_j-app/Arbit.archive/temp [PAClient Error] Error: E0776 ** EXPORT SUCCEEDED ** regard juan
-
hi, Same still laggy too... i tried vertscrollbox... i will watch that video thx regard
-
[WebBrowser] how to get url on click a href in TWebbrowser
Juan Young replied to Juan Young's topic in Cross-platform
hi, i tried code like below and i open Debugview.. didn't fire anything too.. >,<.. procedure TFrameTampilanData.WB1ShouldStartLoadWithRequest(ASender: TObject; const URL: string); begin outputdebugstring(PwideChar(URL)); end; regard -
[WebBrowser] how to get url on click a href in TWebbrowser
Juan Young replied to Juan Young's topic in Cross-platform
hi ipay that event didn't fire >,< regard -
hi, i'm use TListbox to show 2 diffrent frame in FMX apps.. like image in attachment... in timer every 500 ms update all data... why Tlistbox is still laggy when scroll ... is there other component for make it fast? regard juan
-
[WebBrowser] how to get url on click a href in TWebbrowser
Juan Young replied to Juan Young's topic in Cross-platform
tags := tstringlist.Create; tags.Add(dataweb); tags.SaveToFile(System.IOUtils.TPath.GetDocumentsPath + PathDelim + 'DataTampilan.html'); if FileExists(System.IOUtils.TPath.GetDocumentsPath + PathDelim + 'DataTampilan.html') then begin tags.LoadFromFile(System.IOUtils.TPath.GetDocumentsPath + PathDelim + 'DataTampilan.html'); end; tags.Free; wb1.URL:=System.IOUtils.TPath.GetDocumentsPath + PathDelim + 'DataTampilan.html'; wb1.Navigate; like that.. and in at DataTampilan.html have lot link A Href... how i can catch if i click that link because if i OnDidStartLoad on that wb1 it will catch 5 times as sum as a href if i click that url on right WB1 is not fire test on debug view >,,< -
[WebBrowser] how to get url on click a href in TWebbrowser
Juan Young replied to Juan Young's topic in Cross-platform
i'm already try.. not work... onShouldStartLoadWithRequest is not fire anything OnDidStartLoad = will start all link embeded on that html... so confuse.. -
[WebBrowser] how to get url on click a href in TWebbrowser
Juan Young posted a topic in Cross-platform
I have apps with TWebbrowser.loadstrings and there is many a href link but if i click that link webbrowser navigate that link.. How can i get that link on event on click / on tab or something ? i see event on TWebbrowser is not exist..