Thank you for your interest in Total Visual CodeTools for Microsoft Visual Basic 6 (VB6), Office/Access/Excel, and VBA! We are pleased to provide you with this Reviewer’s Guide to assist you in your evaluation of this exciting new version of our award-winning code development tool set. The contents of this document are organized as follows:
Additional documentation is included with the Total Visual CodeTools product, including a 166 page printed User’s Guide and online help system. A free demo is available to experience how the product works in your projects.
Writing Better Code—writing error-free and maintainable code—is hard work. It requires a full time commitment to covering all the details. Total Visual CodeTools provides a robust set of tools to help developers in the day-to-day development of Visual Basic (VB6) and Visual Basic for Applications (VBA) code.
Total Visual CodeTools makes it easier for developers to:
The main features of Total Visual CodeTools are:
A set of code builders that create new code using simple point and click forms. All generated code adheres to the standards you define.
Modifies existing code to standardize visual style, indenting, error handling, commenting, naming conventions and more. Works according to the styles and conventions you define.
Prepares your code base for distribution in non-compiled environments. For example, applications distributed with Microsoft Office applications are not compiled to EXE files, making it easy to break into source code. Code Delivery obfuscates and compacts code to make it run faster and more secure.
Find unused variables, constants, procedure parameters, classes, and user defined types that are defined but never used.
A variety of tools to make writing code in the Visual Basic/Office IDE easier such as the keystroke macro recorder.
Your organization’s standards for error handling, commenting, variable naming conventions, and visual style can be centrally managed and enforced across your entire development group.
"Total Visual CodeTools is by far my favorite third-party product." - Alison Balter, Author, Conference Speaker, Instructor
"An amazing time saver. Completely customizable procedures, comments, and error handlers at the push of a button. At least a dozen other helpful development utilities. I don't know how I managed without it." -- Rob Bovey, MCSE, MCSD Application Professionals
"Return on investment can be measured in days - our developers write better quality code, adhering to our corporate standards, from day one - even in the prototypes." -- Ola Strandberg, Chief Technology Officer, Sweden
"One of the things I like about Total Visual CodeTools is that I can set it up to do all the standard work when creating a new procedure. I set it up once and I get all the standard information and error routines that I want and I can concentrate on writing better code. I sometimes wonder why it is called Microsoft Access and not FMS Access they write much better development tools." -- Hugo Pedersen, Denmark
"I have to maintain and enhance code from a variety of sources. Total Visual CodeTools lets me do this with a minimum of effort. It's cleanup feature has saved me hours of frustration dealing with poorly formatted code. It's also great for maintaining a consistent format across multiple developers. It's an absolutely wonderful product." -- Travis Gibson, Cumberland, WI
"Total Visual CodeTools is one of the essential development tools that I use on a daily basis. The procedure and property builders have helped me establish and maintain consistent names and code formats throughout my project while also saving me time by handling many of the tedious parts of coding. This tool makes it easy to adhere to the coding standards you've set for your projects. The improvements in the latest version are wonderful. Good Job!" -- Sandra Daigle, Microsoft MVP, Cleveland, TN
"It's hard to imagine many Access developers who couldn't benefit from this compendium of coding tools." -- Paul Litwin, Smart Access
"Finally! Someone has come up with a tool that actually helps you write code for your Access applications!" -- Craig Bobchin, Access/VB Advisor
One of the most important features of Total Visual CodeTools is its ability to manage development standards for single developers, project teams, and an entire enterprise. As projects become more complex, and entail greater staffing requirements, the need for standards in development becomes crucial.
Total Visual CodeTools tackles this problem by offering a powerful and flexible architecture for managing your standards.
Code Cleanup is one of the most powerful features of Total Visual CodeTools. Code Cleanup standardizes the code in your project to your specifications. Add error handling to procedures that lack it, standardize code indentations, apply your variable naming convention, insert comment structures, sort procedures, and many other powerful features and more. The result is code that is more readable, robust, and maintainable.
As a software developer, chances are you occasionally inherit code from someone else that does not meet your coding standards making it very difficult to read much less maintain and enhance. Given tight deadlines and time constraints, even your own code may have inconsistent indentation, naming conventions, and comment structures, along with procedures without error handling and other problems. Trying to fix this manually is extremely time consuming and error prone.
The Code Cleanup tool addresses these problems by applying consistent formatting, adding error handling to procedures that lack it, and other features to any or all of your modules.
Standardizing the visual appearance of the code is probably the single most important factor for code maintainability. Choosing this option tells Code Cleanup to do the following:
Procedures can be inserted in any order in VB/VBA. This may be good, but it can also create a mess. Code Cleanup makes it easy to sort the procedures in your modules including property statements in class modules.
Add a standard module header to the top of each module such as a project name, creation dates, copyright notices, and ownership rights. A complete list of all procedure names and procedure definitions can also be added.
Add comment headers to each procedure. Although the program cannot determine what the code is actually doing and write the comments for you, it can take much of the drudgery out of the process of creating consistent comment headers for each procedure.
Inserts the specified property comment template into all the property procedures.
Error handling is one of the key attributes of robust applications. This feature inserts error handling code into your procedures that lack error handling, and allows you to specify separate error handling routines for regular modules vs. class modules. Error handling can also be added in a way to be automatically updated in the future.
Rename your existing variables to conform to naming conventions based on the variable type (Integer, String, etc.). Every variable is given a prefix or suffix identifying its type with additional options for global and module level variables.
Insert "Option Explicit" into the declarations section of every module that lacks it. One of the cardinal rules of writing reliable and maintainable code is to explicitly declare all of your variables. By adding "Option Explicit" to your module, you are telling Access to require variable declaration.
Removes the line numbers in your code. This is useful if line numbers were added to your code (say with the Code Delivery feature), and you now want to remove it.
Code Delivery provides the tools for the final preparation of your code before distribution. Easily add line numbers to all of your code so you can take advantage of VB/VBA’s ability to pinpoint the exact line where an error occurs. You can also obfuscate your code for situations where you need to distribute your source code, but are concerned about its misuse. Code Delivery provides the following code operations:
As one writes code, variables are often created but not used or old code deleted without deleting the corresponding variable declaration. Total Visual CodeTools’ Unused Variable Analysis helps you detect and eliminate unnecessary code from your project. Not only does it make your code more compact, the analysis may highlight problems where you thought the code should be doing or tracking something that it is not.
The Unused Variable feature finds more than just variables:
The Unused Variable Analysis is based on the scope you specify: one procedure, one module, multiple modules, or the entire project.
Getting rid of unused variables may seem like a waste of time. If it’s unused, why bother, since it’s not hurting anything? In a world with pressure to just get code to work, rather than “perfection”, it may seem unnecessary to worry about unused variables.
However, reviewing and eliminating unused variables can be helpful for many reasons:
By running the Unused Variable Analysis feature on a regular basis, you’ll keep your code cleaner and apply Best Practices to your coding skills.
Total Visual CodeTools provides several useful builders for your day-to-day development efforts. While developing code for VB6 and VBA, there are many operations that are tedious and error-prone. Total Visual CodeTools builders allow you to automate and simplify these processes. The following builders are available in Total Visual CodeTools:
Use the New Procedure Builder to quickly create new procedures with the custom commenting and error handling structure you want. Simply type in a procedure name, set the options you want, and press [OK]. Code is automatically generated so you can insert it directly into your project. Easily create consistent, professional procedures. Details...
One of Total Visual CodeTools most powerful tools, the Recordset Builder, makes creating recordset code a snap. Point to any Access database or DSN data source such as SQL Server, select your table or query/view, and you're ready to go. Easily create ADO or DAO code with all its connection and recordset code. Quickly generate code to browse, add, or edit your records. Details...
Many developers consider the Long Text / SQL Builder to be the most commonly used feature within Total Visual CodeTools. It's a very common need to convert SQL text from a query and assign it to a variable in your VB6/VBA code. But it's a real pain to manage issues like quotes inside quotes, word-wrapping, and formatting the text. Details...
The Long Text / SQL Builder handles these issues for your SQL strings or any text that you want to convert to a variable assignment. Simply paste your text in the top box, and it is automatically assigned to a variable and word-wrapped according to your settings. Our SQL parser understands SQL strings and can wrap SQL on key words like FROM, WHERE, GROUP BY, etc. to make it much more readable:
Use the Message Box Builder to graphically create message box statements. Enter the text you want to display in the title and body of the message box. Easily select button combinations and icons, while handling return values. You can even specify a help file and context ID.
Something as simple as a Select Case statement should not be hard! Use the Select Case builder to quickly create multi-branching statements. Simply type in your variable name and test expressions and Total Visual CodeTools generates the code for you. Options let you specify the addition of an Else statement, formatting styles, and assigning a number to a new variable.
When creating forms and reports, you can copy and paste a control but the code behind it does not get duplicated. For instance, if a combo box for the same list is on more than one form, chances are its events are similar if not identical.
Duplicating controls in one form or report object, or copying it between objects can be quite a pain and error prone.
The Copy Control Code Builder duplicates all the event procedures of one control to another in the same object or another. The procedure names are automatically updated to the new control's name along with references to the original name in the events. Use the Copy Control Code Builder to increase your productivity and accuracy.
When writing classes, use the New Property Procedure Builder to quickly create new Property Let/Get/Set procedures. Simply type in a property name, the data type, and whether to create Get, Let and/or Set statements. Specify the scope, and add your comment and error handling structures. You can even create a variable to hold the property value, which is created using your variable naming convention and added to the General Declarations section of your class.
The VB6/VBA Format function allows you to customize the way values are displayed and printed. Unfortunately, it's difficult to remember all the arguments and syntax for this function. The Format Builder makes it simple to format expressions for numbers, currency, date/time, and strings. Use the formats we've provided or add your own. Select the options from the list and see how it is applied to your sample data. No more trial and error in the Immediate Window!
The VB6/VBA DateDiff function calculates the time between two specified date/times. Unfortunately, it is difficult to remember the syntax and arguments of the function. The DateDiff Builder creates code to calculate date and time differences in years, quarters, months, weeks, days, weekdays, hours, minutes, seconds, and more. Set the options, put in your sample date/times, and see the results.
In addition to Builders, Cleanup and Deliver, Total Visual CodeTools offers additional tools to help your coding work.
Total Visual CodeTools uses Standards to define how your projects are created and updated. Standards define things like naming conventions, commenting style, and error handling. In order to use Standards effectively, it is important to understand the Standards architecture employed in the product.
Total Visual CodeTools uses two types of settings to control how the product works and how standards are enforced.
Total Visual CodeTools stores all Shared Standards in one or more Shared Standards files. When you first install the product, a default file is created in your Application Data folder. This file contains reasonable defaults--if you are a single developer and want to get started right away, the default settings will most likely be appropriate.
You can modify any Shared Standards to match your development style and standards. Additionally, you can save multiple settings in multiple Shared Standards files. This is helpful if you are working on several projects with different standards.
Finally, you can place a Shared Standards file on a shared network drive and have all installations of Total Visual CodeTools use this file. Because this file can be password protected, you can define and protect standards from undesirable modification.
The Total Visual CodeTools Shared Standards architecture is designed to be both easy to use and flexible. This section contains the information you need to get up and running in multiple situations.
If you are a single developer using Total Visual CodeTools on a single project, you can start using the product immediately with the default Standards settings. However, it is worth the time to review the default values and adjust them according to your needs.
If you are a single developer working on multiple projects, you can use multiple Shared Standards files to accommodate the different requirements for each project. For example, you have a client who requires a particular type of commenting, while another requires a specific error handling format.
In this scenario, you have multiple developers who are connected to the same network or shared drive. Each developer has an installation of Total Visual CodeTools and you want to configure Shared Standards so every developer uses the same settings. To accomplish this, you must first configure the Shared Standards file, and then configure each installation of Total Visual CodeTools to use the same Shared Standards file.
Having all developers working with Total Visual CodeTools using a shared settings file is a great concept. But what happens when a developer disconnects his or her computer from the network? Developers often go offsite with mobile computers. What happens to the connection to the settings file in such a case?
To handle this scenario, Total Visual CodeTools automatically checks at startup to see if its connection to the Shared Settings file is available. If not, it automatically switches to a local copy. This means that Total Visual CodeTools can be used even when disconnected from a Shared Settings file located on a shared drive. The next time the disconnected developer connects to the shared drive and starts Total Visual CodeTools, the program automatically reconnects to the Shared Settings file on the shared drive.
Note that if you have assigned a settings file to the Shared Settings file, and a developer is working in disconnected mode, the developer will not be able to change any settings--this is the design of password protection. However, the developer, who may be at a remote site, may need to change certain settings in response to project requirements. In such a case, the developer can clear the password on his or her local copy using the Save As feature. See the following section on Password Protection for more information.
This section covers the management aspects of Shared Standards files, including password-protection, making backups, and restoring defaults.
In order to protect against unwanted changes to your standards, you can assign a password to Shared Standards files. By assigning a password, you are restricting certain values in the Standards form to be read-only, unless you have a password. This is not so much a security feature as it is a convenience feature. Even if you assign a password to a Shared Settings file, there is nothing to stop a developer from point to any other (non-password-protected) settings file. Instead, the password-protection feature is designed to prevent developers from making unintentional changes to the team or enterprise standards already defined.
Because Shared Standards files contain a lot of information, recreating them manually in the event of a system failure would be a time-consuming process. To prevent this from happening, it is a good idea to make backups of your Shared Standards files. To do this, simply copy any .CTS files to your backup media.
At any time, you can restore the current Shared Settings file to its default values by pressing the [Defaults] button at the bottom of the Standards form. Because this action overwrites any current values, you should use the [Save As] button (under Manage Settings) to save your current settings before restoring defaults.
Total Visual CodeTools has the same system requirements as that of the host product:
Total Access CodeTools version 8.0 is available for Access 97 databases. Contact FMS for information about pricing and availability.
Total Visual CodeTools ships electronically and includes extensive, context sensitive online help. You can also get a CD and professionally printed 166 page user’s manual shipped to you. Technical support is available by phone, fax, email, and through our newsgroups.
Total Visual CodeTools is licensed on a per developer seat basis. A single license is $299 and a 5-pack is $899. Owners of previous versions can upgrade for $199. Total Visual CodeTools is also part of FMS’ family of suites, including: Total Visual Developer Suite, Total VB Enterprise Suite, Total Access Developer Suite, and Total Access Ultimate Suite.
While developing code for Visual Basic 6 and VBA, there are many operations that are tedious and error-prone. Total Visual CodeTools allows developers to automate and simplify these processes. With its rich set of enterprise-enabled coding tools, Total Visual CodeTools increases productivity and allows an entire development team to share a consistent set of standards and rules.
Thank you again for taking the time to review Total Visual CodeTools. We invite you put the product through its paces, and contact us if we can provide any additional assistance in evaluating or deploying Total Visual CodeTools.
Supports Office/Access 2016, 2013, 2010, 2007, 2003, 2002, 2000, and Visual Basic 6.0!
Also available for
Access 97
"Total Visual CodeTools is by far my favorite third-party product."
Alison Balter, Author, Conference Speaker, Instructor
Best Visual Basic Add-In
Rave Reviews