You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have seen a problem with some with with when used with a structure type (Rectangle but probably point...).
Input code
PublicClassForm1PrivaterecAsRectanglePrivateSubForm1_Load(senderAsObject,eAsEventArgs)HandlesMyBase.LoadWithrec.Height=100.Y=100.Width=100.X=100EndWithMessageBox.Show(rec.Height)' Should show 100EndSubEndClass
Last plugin version.
When there is a struct type and a With, it is converted in a var Withblock but on a struct type you only change the copy of the structure not the original. (so changing the withBlock doesn't work.
The conversion is correct with a rectangle in the sub but not when it is declared in the form (private)
Version in use: 8.2.0.0
I guess it should be the same for point...
Marc
The text was updated successfully, but these errors were encountered:
Hello,
I have seen a problem with some with with when used with a structure type (Rectangle but probably point...).
Input code
Erroneous output
Details
Last plugin version.
When there is a struct type and a With, it is converted in a var Withblock but on a struct type you only change the copy of the structure not the original. (so changing the withBlock doesn't work.
The conversion is correct with a rectangle in the sub but not when it is declared in the form (private)
I guess it should be the same for point...
Marc
The text was updated successfully, but these errors were encountered: