tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
I thought VBA was NOT case sensitive.
Try this:
In Module1, type:
In Module2, type:
For some reason, the variable b is changed in BOTH modules to be either upper or lower case.
Is that a bug?
Try this:
In Module1, type:
Code:
Sub First()
Dim b As Integer
End Sub
In Module2, type:
Code:
Sub Second()
Dim B As Integer
End Sub
For some reason, the variable b is changed in BOTH modules to be either upper or lower case.
Is that a bug?