Software To Compare Code Changes

quakeworld

Senior member
Aug 5, 2009
222
0
76
hi. i'm looking a (free) program to compare 2 versions of VBA code in MS Access (contained in 2 separate .mdbs) and point out what the differences are. reason i'm asking is i messed up and lost track of the changes i've made in a module i was working on and want to make sure that the latest version i'm using contains the changes i've made. thanks
 

Cogman

Lifer
Sep 19, 2000
10,286
145
106
Not the way you want. (MS Access? Why do you want to dump changes here?)

There is software which manages code changes/difference checking/and handling conflict resolution. It is called version control software. Things like SVN, GIT and Mercurial. All free.

For an individual, GIT is probably the easiest to get up and running (you don't need a centralized server to do it).

Whatever you do, I recommend setting up and using one of these techs.


To check for differences between two files. Look here http://stackoverflow.com/questions/1830962/file-differencing-software-on-windows
 

KLin

Lifer
Feb 29, 2000
30,426
744
126
textpad can compare diffs in 2 text files. Copy/past the vba module into text files then compare them.
 

DaveSimmons

Elite Member
Aug 12, 2001
40,730
670
126
I can still run Windiff in an XP VM, but my work desktop runs Windows 8.1 now since we need the SDK. Sigh.
 

slugg

Diamond Member
Feb 17, 2002
4,723
80
91
WinMerge is good stuff, but I use Notepad++ as my default "external" editor. In other words, I still use full-fledged IDEs for real work, but if I need to mess with some random files quickly (rather than dealing with a whole project), Notepad++ is fast and does it all. So having the Compare plugin built-in is pretty useful. Not the most comprehensive diff tool in the world, but it fits nicely with Notepad++.

Pretty much all the tools mentioned in this thread are good. I'm just sharing what works for my particular workflow.