Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


The regular expression pattern above will ignore assignments to geometry variables in the Form property bag (e.g. ClientHeight, ClientWidth, etc) as these are already handled as Twips by the tool. The fully

Fully qualified identifiers of symbols may be reported using the Search panel / Symbols report. For example:

Info
Code Block
(\w+Height|\w+Top|\w+Width|\w+Left|\w+Bottom)\s{0,3}(\s*As.?\s*)?=.?-?\d\d+

Image Added

Code Block
FileExplorer.frmExploreLite.mSplitLimit 
FileExplorer.frmExploreLite.SizeControls.X


2) Once you have the fully qualified identifiers of the variables computed using Twips literals, you may prepare FixType statements to tell gmStudio to make the Twips to Pixels adjustment of the literal values used in computing those variables. This is done by changing the type of the variable to TwipsX or TwipsY using a FixType statement. This is typically done in a Compile\Refactor block:

...