Method Mapping Rules
To ensure that all code is compiled successfully, methods in the following table are removed using CodeRules input during transformation.
Note
Only code that exactly matches the code in the CodeRules.txt file is removed during transformation. For example, if the CodeRules.txt file contains a rule to remove !currForm!.EDITABLE := TRUE, then all instances of !currForm!.EDITABLE := TRUE will be removed. Instances of !currForm!.EDITABLE(TRUE) will not be removed.
| Method | Type |
|---|---|
[Action :=] FORM.RUNMODAL(Number [, Record] [, Field]) |
Form Method |
FORM.RUN(Number [, Record] [, Field]) |
Form Method |
[CurrXPos :=] f.XPOS([NewXPos]) |
Form Method |
[CurrYPos :=] f.YPOS([NewYPos]) |
Form Method |
[CurrWidth :=] f.WIDTH([NewWidth]) |
Form Method |
[CurrHeight :=] f.HEIGHT([NewHeight]) |
Form Method |
[CurrLogWidth :=] f.LOGWIDTH([NewLogWidth]) |
Form Method |
[CurrLogHeight :=] f.LOGHEIGHT([NewLogHeight]) |
Form Method |
[IsEditable :=] f.EDITABLE([SetEditable]) |
Form Method |
[IsVisible :=] f.VISIBLE([SetVisible]) |
Form Method |
[CurrCaption :=] f.CAPTION([NewCaption]) |
Form Method |
[CurrMinimized :=] f.MINIMIZEDONOPEN([NewMinimized]) |
Form Method |
[CurrMaximized :=] f.MAXIMIZEDONOPEN([NewMaximized]) |
Form Method |
[IsInLineEditing :=] INLINEEDITING([SetInLineEditing]) |
Form Method |
[CurrLookupMode :=] f.LOOKUPMODE([NewLookupMode]) |
Form Method |
[CurrLanguage :=] f.LANGUAGE([NewLanguage]) |
Form Method |
String := f.URL([UseNames]) |
Form Method |
String := f.OBJECTID([UseNames]) |
Form Method |
CurrForm.SAVERECORD |
Form Method |
CurrForm.UPDATE([SaveRecord/Default=True]) |
Form Method |
CurrForm.UPDATECONTROLS |
Form Method |
f.GETRECORD(Record) |
Form Method |
f.SETRECORD(Record) |
Form Method |
f.SETTABLEVIEW(Record) |
Form Method |
CurrForm.SETSELECTIONFILTER(Record) |
Form Method |
IsActive := f.ACTIVE |
Form Method |
[Ok :=] f.ACTIVATE |
Form Method |
f.CLOSE |
Form Method |
[Action :=] f.RUNMODAL |
Form Method |
f.RUN |
Form Method |
[CurrxPos :=] CurrForm.c.XPOS([NewxPos]) |
Control Method |
[CurryPos :=] CurrForm.c.YPOS([NewyPos]) |
Control Method |
[CurrWidth :=] CurrForm.c.WIDTH([NewWidth]) |
Control Method |
[CurrHeight :=] CurrForm.c.HEIGHT([NewHeight]) |
Control Method |
[IsVisible :=] CurrForm.c.VISIBLE([SetVisible]) |
Control Method |
[IsEditable :=] CurrForm.c.EDITABLE([SetEditable]) |
Control Method |
[IsEnabled :=] CurrForm.c.ENABLED([SetEnabled]) |
Control Method |
[CurrMaxDecimals :=] CurrForm.c.DECIMALPLACESMAX([NewMaxDecimals]) |
Control Method |
[CurrMinDecimals :=] CurrForm.c.DECIMALPLACESMIN([NewMinDecimals]) |
Control Method |
CurrForm.c.UPDATE |
Control Method |
CurrForm.c.ACTIVATE |
Control Method |
SubForm := CurrForm.c.FORM |
Control Method |
CurrForm.c.UPDATEINDENT(Indent) |
Control Method |
CurrForm.c.UPDATESELECTED(Selected) |
Control Method |
CurrForm.c.UPDATEEDITABLE(Editable) |
Control Method |
CurrForm.c.UPDATEFORECOLOR(ForeColor) |
Control Method |
CurrForm.c.UPDATEFONTBOLD(FontBold) |
Control Method |