Hello,
I noticed in version 2.70 that if I write a statement such as:
The variable i will be automatically capitalized to become:
I remember this happened in some earlier version, then was fixed in an update. It now seems to have reappeared.
Is there something that I am doing that causes this?
Here is a snippet from actual code:
The variable I started out as lowercase. I became uppercase although j and k remained lowercase. In the for loop i was changed to uppercase.
Thanks,
Barry.
I noticed in version 2.70 that if I write a statement such as:
B4X:
Dim i As Int
i = 10
The variable i will be automatically capitalized to become:
B4X:
Dim I As Int
I = 10
I remember this happened in some earlier version, then was fixed in an update. It now seems to have reappeared.
Is there something that I am doing that causes this?
Here is a snippet from actual code:
B4X:
Sub UpdhsvIPics(lst As List)
Dim I, j, k As Int
Dim s As String
j = hsvIPics.Height * 0.8
For I=0 To lst.Size-1
s = lst.Get(I)
...
The variable I started out as lowercase. I became uppercase although j and k remained lowercase. In the for loop i was changed to uppercase.
Thanks,
Barry.
Last edited: