vba - Excel VBE inconsistent exports -
I save the file as .bas from .xls I am exporting them to check in an SVN repo.
I am facing the following problem which actually causes the change in the cover of variable names in real (or not least relevant) files.
Such statements get reproduced / holiday:
changes to rngTenors.Cells (i, 1) rngTenors.cells (i, 1) (subtle but still different and it is picked up by different tools used by me and in the noise to hide the actual change on this file which generates it)
Any ideas of ways to stop it will be appreciated.
I am doing something similar but I have not seen what you are experiencing. I am not using the same export routine, but they look the same at first glance.
Some questions
1) Do you have the
option clear, and do you have a variable name anywhere in thecell?2) If you are committed, make some changes, export the .bas file and submit again, what does the difference look?
3) Do you open and separate .bas files in a code familiar editor (eg: ultrite), which are changing your capitalization?
I'm just being guessed ... but the VB editor capitals can be odd if you give names to names like variables or properties. Besides, I do not see why your export will continuously export . Call I think if it exports to .cell then this is always .cell and there is no problem.
These are just some ideas, good luck :)
Comments
Post a Comment