form resize

Discuss and ask questions about CADViewX (Lite and Pro versions).

Moderators: SDS, support, admin

Post Reply
xerp
Posts: 8
Joined: 19 Jul 2006, 04:39
Location: China
Contact:

form resize

Post by xerp » 20 Jul 2006, 07:51

I'm using cadviewx in delphi 7.

How to make cadviewx dwg fit to windows after main form resize event? currently I found when the main form resizes, the dwg image does not change,remains at the same position.

Thanks.

Love all, trust a few, do wrong to none.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 20 Jul 2006, 15:05

Use the following procedure:

Code: Select all

//-----------------------------------------------------------------------
procedure TfmMain.FormResize(Sender: TObject);
var
  R: TxRectLong;
begin
  // Zoom drawing to viewing area,
  // 1.
  FCADViewX.DoToolButtonClick(tbFitToWindow); 
  // or other sample
  // 2. 
  //R := FCADViewX.PictureRect;
  //FCADViewX.Zoom(R);
end;
//-----------------------------------------------------------------------
Igor Tobolov (CADSoftTools support team)

please post questions to the forum or write to support@cadsofttools.com

xerp
Posts: 8
Joined: 19 Jul 2006, 04:39
Location: China
Contact:

Post by xerp » 21 Jul 2006, 06:15

FCADViewX.DoToolButtonClick(tbFitToWindow); works fine, but when the form is closed, there will be Debugger Exception Notification saying '
Project CADView.exe raised exception class EAccessViolation with message 'Access violation at address 0047A292 in module 'CADView.exe'. Rad of address 00000310',Process stopped. Use Step or Run to continue.

That is why I post previously. THanks for your help.

Love all, trust a few, do wrong to none.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 16 Aug 2007, 17:29

Hello!

Beta version of CADViewX v.6 solves this problem. It is available at: http://www.cadsofttools.com/download/CADViewXRL.zip

Very important: method DoToolButtonClick has been removed. Please use the follwing way instead of <b>FCADViewX.DoToolButtonClick(tbFitToWindow)</b>:

Code: Select all

  CADViewX.Actions.Item("Fit to Window").Execute
Sergey.


Please post questions to the forum or write to support@cadsofttools.com

Post Reply