Hello,
My organization is in the process of upgrading from Visual COBOL 4 to Visual COBOL 7. I've been setting up formatting in the Visual Studio settings for it and I notice a difference in behavior. In VC4, if I selected a section that looked something like this:
if value-item > 5
move value-item to other-value-item
end-if
and used the Format Selection function, I'd had it configured where it would result in this:
If value-item > 5
Move value-item To other-value-item
End-if
Basically, it would do proper capitalization of keywords. I've tried everything I can find in the settings to replicate this behavior in VC7, but it never touched capitalization, leaving everything as it was and applying all other formatting settings. Is there something I'm potentially missing, or was this changed from 4 to 7?
#VisualCOBOL
#VisualStudio