Jump to content

Multsoft.com

Active subscription
  • Posts

    58
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Multsoft.com

  1. When I embed a frame inside a form, the pull to refresh of the collectionView activates during scrolling, and if I just show the frame, the error disappears... I'm using a sample project to report this issue, thus using conventional code to embed the frame

     

    procedure TFormMain.ShowFrame(Sender: TObject);
    var
      FrameNumber: Integer;
      FrameClass: TfgFormClass;
    begin
      TfgAssert.IsClass(Sender, TfgButton);
    
      FrameNumber := TfgButton(Sender).Tag;
    
      // Remove previous active frame
      if FActiveFrame <> nil then
      begin
        FActiveFrame.Parent := nil;
        FreeAndNil(FActiveFrame);
      end;
    
      case FrameNumber of
        1: FrameClass := TFrame1;
      else
        raise EfgAssertError.CreateFmt(SUnknownValue, ['FrameNumber']);
      end;
    
      // Embed new form as control into lContent layout^
      FActiveFrame := FrameClass.Create(nil);
      FActiveFrame.BeginUpdate;
      try
        FActiveFrame.PositionMode := TfgPositionMode.Relative;
        FActiveFrame.Alignment.FlexGrow := 1;
        FActiveFrame.FullScreen := False;
        FActiveFrame.Parent := lContent;
        FActiveFrame.Show;
      finally
        FActiveFrame.EndUpdate;
      end;
    end;

    In button 2, I just call the show, and look at the difference, remembering that the pull to refresh is off, I created the collectionView again.

    procedure TFormMain.btnShowFrame2Tap(Sender: TObject);
    begin
      frame1 := Tframe1.Create(nil);
      frame1.Show;
    end;

     

     

    Obs: button 1 embeds the screen and button 2 calls the frame alone.

     

    image.png.06f9a7e89d7cee6a89bac9a19445f79a.png

  2. Hello, I checked this one: "FGX-252 Changing Enabled didn't affect children (Android)". however when holding over, and pasting... it takes the contents of the clipboard and fills the edit.

    I don't know if it would be something relevant to you!!!

  3. Good afternoon, I downloaded the trial version setup_1.14.6.0_trial.eng and installed it for D10.4 and D11, but it presents me:

    Can't load package C:\Program Files (x86)\FGX Native\Libs\270\Win32\Release\FGXNative.Designer.270.bpl.
    Do you want to attempt to load this package the next time a project is loaded?

    I have already uninstalled and reinstalled and it still persists... I would like to know if I have to do anything else to test the tool.

    Delphi 10.4.1 registered
    Delphi 11.2 trial

     

    image.png.eb63f4bc8f4c130688ff2927780ab65c.png

    image.png.6daa10c51e812656aef0a2afb10cdf11.png

×
×
  • Create New...