form resize
Moderators: SDS, support, admin
form resize
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.
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.
Use the following procedure:
Igor Tobolov (CADSoftTools support team)
please post questions to the forum or write to support@cadsofttools.com
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;
//-----------------------------------------------------------------------
please post questions to the forum or write to support@cadsofttools.com
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.
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.
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>:
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
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
Please post questions to the forum or write to support@cadsofttools.com