Default preview cursor shape?

hsmhsm
edited 8:45AM in FastReport 4.0
Oh dear, I do seem to be asking a lot of questions this week!

A simple one now..

Although I might change the cursor shape for certain interactive objects, the default for preview seems to be a hand shape (why? - it looks so odd!)

How can I make the default shape for the whole report be the usual arrow shape ie the screen.default?

Howard

Comments

  • gpigpi
    edited 8:45AM
    Change frxPreview.pas:
    constructor TfrxPreviewWorkspace.Create(AOwner: TComponent);
    begin
      inherited;
      FPageList := TfrxPageList.Create;
      OnDblClick := PrevDblClick;
    
      FBackColor := clGray;
      FFrameColor := clBlack;
      FActiveFrameColor := $804020;
      FZoom := 1;
      FDefaultCursor := crHand;  // change this line
    
      LargeChange := 300;
      SmallChange := 8;
    end;
    
  • hsmhsm
    edited 8:45AM
    gpi wrote: »
    Change frxPreview.pas:
    constructor TfrxPreviewWorkspace.Create(AOwner: TComponent);
    begin
      inherited;
      FPageList := TfrxPageList.Create;
      OnDblClick := PrevDblClick;
    
      FBackColor := clGray;
      FFrameColor := clBlack;
      FActiveFrameColor := $804020;
      FZoom := 1;
      FDefaultCursor := crHand;  // change this line
    
      LargeChange := 300;
      SmallChange := 8;
    end;
    


    Brilliant, Thank you!

Leave a Comment