Page 1 of 1

regression bug related to Range, Rect...

PostPosted: Wed Dec 15, 2010 12:31 pm
by berndnoetscher
regression bug related to Range, Rect...

Find out what's wrong.
If you need to use a Range variable, you must explicitly assign an object to it (the auto-object init is not done - it is a bug).

This works:
Code: Select all
Dim r As Range = Range(0, 0)
r.Location = 2
r.Length = 33