Hi I'm new to programming in Visual C++ right now (after having worked with JAVA for a long time) and I'm having trouble figuring out how to simply rename a variable to another (more logical) name and have the compiler automatically change all references to it.
In JAVA (under the Eclipse IDE) I simply right clicked, and went to Refactor -> Rename. Having searched for how to do this in Visual Studio, however, I find only that I can do so by installing a third party add-in, which visual studio EXPRESS doesn't allow me to do.
Do I really have to pay for VS Standard, then for a plug-in just to rename a variable? I'm starting to wish I hadn't used VC++.
I couldn't figure out how to begin using "Refactor!" after i installed it, but to my surprise the find and replace in all files with those options does work! I thought for sure it would screw up when I tried to rename a DataGridView with "DataGridView_Click()" and "DataGridView_DoubleClick()" and all those subfunctions. But it worked.