I discovered one minor problem when upgrading from CFMX to CFMX6.1, it looks like GetTickCount() changed and it is now returning a value that is very different from what was returned previously. If you use GetTickCount() to return a value that is to be compared to another GetTickCount() value then you'll not run into this one. But I was using GetTickCount() to seed Randomize() using , and the number now returned by GetTickCount() is so large that Randomize() would not accept it. The quick fix? I changed the code to use and the page is now working again. Not a biggie, but worth noting.