Jump to content

Juan Young

Members
  • Content Count

    11
  • Joined

  • Last visited

Posts posted by Juan Young


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


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

    test.jpg


  3. 19 hours ago, Dave Nottage said:

    It won't fire if it cannot. OnShouldStartLoadWithRequest should fire for every URL that is visited. As Remy said, if it does not, then there's a bug.

    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

     

     


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

    58e84f4b-2cf2-495e-a729-d736e150329b.jpg


  5. 5 hours ago, Remy Lebeau said:

    Clicking on a hyperlink starts a load request.  You should be getting events for that.

     

    Lets starts with the obvious - did you actually ASSIGN a handler to that event?

    I'm confused.  What are you trying to say exactly?  Can you provide a ste-by-step example?

     

        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

     

     

    test.png

     

    if i click that url on right WB1 is not fire test on debug view >,,<

×