Stop Visual Basic 6 from changing my casing

后端 未结 9 1222
悲哀的现实
悲哀的现实 2020-11-27 15:47

Very simple question that is apparently impossible to find a decent answer to: How can I make Visual Basic 6 stop changing my ^@#*ing variable casing!?!

I know that

9条回答
  •  囚心锁ツ
    2020-11-27 16:32

    I standardised the case across the codebase, normally by using the examples above (Dim CorrectCase), and removing it again. I then triggered VB to save EVERY file, by doing a case sensitive search/replace of "End" with "End" (no functional change, but enough to get VB to resave). Once that was done, I could then do a single commit to standardise the case, making it MUCH easier to keep on top of it at a later date.

提交回复
热议问题