Stop Visual Basic 6 from changing my casing

后端 未结 9 1227
悲哀的现实
悲哀的现实 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:21

    I have a similar problem:

    in a bas module there I wrote :

    Private sub bla_bla()
      Dim K as integer
    End Sub
    

    so in a class module the Dim k as integer will automatically be replaced by IDE become 'Dim K as integer' <-- it's not logical but then: I correct the bas module become:

    Private sub bla_bla()
      Dim k as integer
    End Sub
    

    then magically the problem in the class module was solved (still be k and not automatically replaced by IDE become K). Sorry I'm poor in English

提交回复
热议问题