Menu

#10 Not making Invisible

open
nobody
None
5
2009-09-10
2009-09-10
Patrick
No

Example 1

Dim array1() as string, array(2) as string
array1 will be IB'd but no more arrays after that on that line
The workaround is two lines:
Dim array1() as string
Dim array(2) as string

Example 2

Dim rgThis as range
and in code refer to
rgThis.Value
IB does not change it because in the case of Forms the control.value needs to be retained.
The workaround is to use
rgThis.cells(1,1).value

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.