Question:   

Is there a white paper or something that explains why some variants are converted to strong types and others are set to object?  I noticed in the sample application I have been playing with that not all get set to strong types.  I could not find a difference between the one that was set to string the one that was set to object.

Answer:  

Type Inference is a critical matter in VB6 translation, even more so for ASP/VBScript, and has has been a central theme in the development of our translation platform.  We have also implement custom type-inference algorithms in various extensions and gmSL scripts.  Type Inference optimization is an important task in our methodology.

In general the tool favors strong typing, but it backs off to object if it means introducing something that would break the build.  There are several possible causes of weak typing:

Having said that, gmStudio provides an extensive set of upgrade configuration tools and techniques that teams may use to improve type inference:

There are a few more advanced techniques to allow for symbols that are used with multiple-types and even to introduce interfaces or generics where type object or variant was used before.