vote up 4 vote down star
2

Hi all, I'm not much of a Visual Basic person, but I am tasked with maintaining an old VB6 app. Whenever I check out a file, the editor will replace a bunch of the uppercase variable names with lowercase automatically. How can I make this stop!? I don't want to have to change them all back, and it's a pain to have these changes show up in SourceSafe "Differences" when I'm trying to locate the REAL differences.

It is changing it automatically in the definition, too: Dim C as Control becomes Dim c as Control. Dim X& becomes Dim x&. But it doesn't do it all the time; for example, three lines down from Dim x&, there's a Dim Y&, uppercase, which it did not change. Why's it do this to me?

flag

25% accept rate
Retagged as 'vb6' + 'ide' – Mike Spross Nov 2 '08 at 5:07

6 Answers

vote up 11 vote down check

Continuing from DJ's answer...

And it won't only change the case of variables in the same scope either.

It will change the case of all variables with the same name in your entire project. So even if they're declared in uppercase in one place, another module might have different variables using the same variable names in lowercase, causing all variables in your project to change to lowercase, depending on which of the declarations was loaded (?) or edited last.

So the reason your C and X variables are changing case, while the Y isn't, is probably because C and X are declared somewhere else in your project too, but in lowercase, while Y isn't.

There's another mention of it here, where they mostly seem concerned with such variable names conflicting when case is being used to differentiate local from global variables. They end up going for prefixes instead.

The only alternative I can think of is to use some other editor with VB6-highlighting capabilities to do your editing...

link|flag
Why the downvote? This text is an accurate description. – Konrad Rudolph Oct 31 '08 at 22:45
vote up 2 vote down

To get past the painful file diff experience, set the VSS option in the diff dialog to do case-insensitive comparisons. That way you'll only see the "real" changes.

link|flag
vote up 1 vote down

It must be defined/declared in lower-case. Locate the declaration and fix it there. The IDE will always change the case to match the declaration.

link|flag
-1 Untrue. VB6 changes name casing as it pleases, regardless of scope and explicit definitions. Just as others have said. No point going to the definition and fixing it here. It will just break some other definition in different scope. It's pretty random, depending on which files were touched last. – tomekszpakowicz Mar 27 at 18:54
-1. Not always true. If you have a team working with version control on the same project, VB6 does sometimes change name casing when you check in. It changes the declaration and the usages for its own reasons. Never figured out what triggers it to do it. – MarkJ Jun 30 at 21:23
vote up 0 vote down

Enums are even worse. Getting the case wrong anywhere the enum is used changes the case of the definition.

link|flag
vote up 0 vote down

Continuing from Mercator's excellent answer...

I'd recommend:

  1. Check out all files (I assume you're using VSS for a VB6 app)
  2. Do a rebuild of the entire project group
  3. Recheck back into VSS

Now base you're the real differences rather than the 'auto' changes that VB6 has tried to apply.

link|flag
So your solution is: Let it change everything as it wants (meaning: randomly) and live with it? Great! Sorry. I'm just working with code merged from several projects with differing naming conventions. My (otherwise small) checkins are mostly a noise of random changes in name casing. I've had enough! – tomekszpakowicz Mar 27 at 19:01
yes that is my recommendation, VB is trying to change the case of your variables for a reason (not 'randomly'), if you want to see only what you have changed AND you want to use Visual Studio to do it, create a baseline first. – Andrew Bickerton Mar 31 at 16:41
Or use a different editor, but if you open it in Visual Studio later on you're in the same position. – Andrew Bickerton Mar 31 at 16:42
By 'randomly' I mean whichever version it sees first it imposes on all other occurences, regardless of type, scope, etc. So either your resulting casing is random or you'll have to inspect all names and fix them by hand to have this 'baseline'. As if VB6 forms weren't a pain to merge without this. – tomekszpakowicz Apr 9 at 9:31
vote up -1 vote down

DJ is spot on... VB always changes the case of variables to match the original declaration. It's a 'feature'.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.