VBA代码的版本控制

VBA代码的版本控制

本文介绍了Access VBA代码的版本控制?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否存在任何版本控制?如果没有,是否有使用VBA共同开发MS Access 2007数据库的良好解决方案?

Does any kind of version control exist?If no, is there any good solution for collective development of MS Access 2007 database with VBA ?

推荐答案

用于Access的唯一集成VC解决方案是Microsoft Visual Source Safe,但是它的设计不佳,甚至Microsoft内部也避免使用它;).有人称它为源破坏系统",但我个人知道使用它的成功案例.通常,由于其局限性,它对于中小型项目可能是一个很好的解决方案.

The only one integrated VC solution for Access is Microsoft Visual Source Safe however it's poor designed and even Microsoft internally avoid from using it ;). Some people call it "Source Destruction System", but I personally know success cases with using it. Generally, it could be a good solution for small and medium projects due to its limitations.

这是关于VSS的非常重要的文章: http://www.highprogrammer.com/alan/windev/sourcesafe.html

Here is a very critical article about VSS:http://www.highprogrammer.com/alan/windev/sourcesafe.html

另一种选择是使用Application.SaveAsText()设计自己的代码以导出VBA解决方案-这是Access API的部分未记录功能.

The other option is to design your own code to export VBA solution using Application.SaveAsText() - it's partially undocumented feature of Access API.

这篇关于Access VBA代码的版本控制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 04:13