Versions Compared

Key

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

Q:  VB is not case sensitive, C# is. When migrating controls we are preserving C# naming convention. For example the Calendar WPF control has a "Value" property. This control will replaced the VB6 MonthView. The latter has also a Value property working the same. So all is perfect. But in the VB code the property is accessed as "value" (lower "v").  Question : Is GM taking this case problem into account ? How ? and if not what is your advise ?

A: GM takes casing into account.

The

...

case used in the C# is the case used in the declaration of the symbol, not in its use in the VB6. 

...

Ror application symbols, the declarations are stored in the VB6 code

...

, and for COM API symbols, the declarations are stored in the API’s IDF.

If case needs to be changed from what was used on the source platform, that may be done using a refactor/rename command or by by adding a migName or migPattern attribute to the appropriate IDF element.

...