Microsoft Access Programmer
Services In Charleston, WV

25+ years experience as a leader in Access Database Programmer
Services including: Custom Database Development, Version
Upgrades, Excel Migration, SQL Server, ASP.NET, and Azure SQL

Don't let a broken database ruin your business. We create custom Microsoft Access
databases, convert Excel to Access, repair broken databases, and upgrade old Access
databases to the latest version. Call (323) 285-0939 now for a FREE consultation.

MS Access Solutions
Database Development Services

Microsoft Access

MS Access is a highly flexible, robust, and reliable database program. Microsoft Access is the leading relational database management system in the world. Find out more about Microsort Access programming at our Microsoft Access Tech Talk section. We are a Microsoft Access developer company creating database applications for your business.

SQL Server

SQL Server is an enterprise relational database management system from Microsoft. We use SQL Server as the database server for data storage and data retrieval to and from Microsoft Access as well as other software applications, like ASP.NET and Azure.

ASP.NET

Microsoft's application framework for web development produces dynamic web pages. ASP.NET provides web programmers with a platform for building dynamic web sites, web applications (web apps), and web services that require a web solution.

Microsoft Azure

MS Azure is Microsoft's cloud computing service. It is used for development, testing and deployment as well as managing software applications through a global network data centers managed by Microsoft. Azure now features SQL Server called Azure SQL.

We Are Your Microsoft Access Database Experts

The Best Microsoft Access Database Solutions owner, consultant, and principal programmer is Alison Balter - a recognized expert Microsoft Access consultant. Alison is the author of 15 Microsoft Access training books and videos. She is a frequent guest speaker at MS Access conferences and has developed hundreds of applications for businesses of all types.

We know your business data is important; we listen to your concerns, ask questions, and gather information from all stake holders. We discuss your needs and requirements for your database. We find out what you want, why you need various features so we can obtain as much information as possible. Once we have the information we need, we work with you to design the proper database architecture, plus the dashboards, the questions (queries), forms, and reports you need for an excellent database system.

Microsoft Access developer and MS Access development company Charleston, West Virginia

Microsoft Database Applications For You

Get Microsoft Access + SQL Server

Your data is important to your business and you need both to enter and retrieve data rapidly. The data stored in your company's database must be clean, secure, and allow for maximum usage. Our Microsoft Access programmer team will create your Microsoft Access database for optimum efficiency with all the features you need. Our custom database applications use MS Access and SQL Server to create an easy to use front end User Interface in Access that connects to a powerful SQL Server data storage database You will have the capacity to manipulate your data so you get the information you need for every day activities and for making critical business decisions.

ASP.NET For Web Display

We also create websites designed for speed to display your data accurately, using ASP.NET technology. Fast, secure, and robust, our ASP.NET web sites and web applications give you true business tool for finding and displaying information dynamically on the web.

Example Projects

Corporate Database

Microsoft Access front-end and SQL Server back-end database

Access Forms Development

Access data entry form connecting to SQL Server back-end database

Accounting Company

ASP.NET website with SQL Server back-end database

Corporate Reports

MS Access Report created with SQL Server database

Clients Love Our Work

Sheldon Bloch, Oil and Gas Company

Alison from MS Access Solutions has provided both training and mentoring services to us over the past several years. Our developers use Alison Balter's books on programming with Microsoft Access as a desk reference. They have provided our staff members with much-needed training in Visual Basic, client/server development, SQL Server, and Microsoft Access. This has helped us to ensure that our employees can properly keep up with the ever-changing technologies. MS Access Solutions has also provided our staff with mentoring on an as-needed basis, providing expertise that helped our in-house programmers to overcome various hurdles. More Reviews
MS Access Solutions client who is very happy with our Microsoft Access programmer services

Lisa Dosch, Motion Picture Editors Guild - Local 700

Alison Balter at MS Access Solutions developed the application that helps us to properly service all of our members. This program handles billing, payments, tracking of jobs worked, available list, and other important data about our members. The system automates many tasks that were previously performed manually, allowing our employees to more cost-effectively use their time. This client/server system is used by employees in our Charleston, West Virginia, and New York offices. MS Access Solutions and their staff worked with us to develop the necessary specifications and design documents, and then programmed, tested, and implemented the application throughout our organization. More Reviews

Contact Details

When you need a truly expert Microsoft Access database development company to design and develop your mission critical custom database - Contact MS Access Solutions.
  • Corporate Office Los Angeles, California
  • Phone: +1 (323) 285-0939
  • Office Hours: Mon - Fri : 8:00 AM to 5:00 PM

Get In Touch

Microsoft Access Articles

Microsoft Access Tech Talk

Using Microsoft Access Modules - For Programmers

Call MS Access Solutions at (323) 285-0939 for your FREE consultation.

The material below originally appeared in Alison Balter's book Mastering Microsoft Office Access 2007 Development and is reprinted here with the author's permission. There may be references to "Figures" or "Chapters" that are not reprintable and are not used on this page

What Are Access Class Modules, Standard Modules, Form Modules, And Report Modules?

VBA code is written in units called subroutines and functions that are stored in modules. Microsoft Access modules are either Standard modules or Class modules. Standard modules are created by clicking to select the Database Tools tab and then selecting the Visual Basic button from the Macro group. Access takes you to the Access Visual Basic Editor (VBE). Finally, select Insert, Module from the VBE menu. Class modules can be standalone objects or can be associated with a form or report. To create a standalone Class module, you choose the Class Module command from the VBE Insert menu. In addition, whenever you add code behind a form or report, Microsoft Access creates a Class module associated with that form or report that contains the code you create.

Modules specific to a form or report are generally called Form modules and Report Class modules, and their code is often referred to as Code Behind Forms (CBF). CBF is created and stored in that form or report and triggered from events occurring within it.

What Is A Subroutine?

A subroutine (or subprocedure) is a routine that responds to an event or performs some action. An event procedure is a special type of subroutine that automatically executes in response to an event such as a mouse click on a command button or the loading of a form. A function is a special type of routine because it can return a value; a subroutine can't return a value. Like a subroutine, a function can be triggered from an event.

Where Is VBA Code Written?

You write all VBA code in the Visual Basic Editor, also known as the VBE. Access places you in the VBE anytime you select Visual Basic from the Macro group on the Database Tools tab or press Alt+F11. Figure 8.1 shows the Visual Basic Editor. The VBE environment in Microsoft Access is consistent with the editor interfaces in other Microsoft Office products. The VBE is a separate window from that of Microsoft Access and comprises a menu bar, toolbar, Project window, Properties window, Immediate window, Locals window, Watch window, Object Browser, and Code windows. The various components of the VBE are discussed as appropriate in this chapter and throughout the book.

The Anatomy of a Module

Whether you're dealing with a Standard module or a Class module, all modules contain a General Declarations section. As the name implies, this is the place you can declare variables and constants that you want to be visible to all the functions and subroutines in the module. You can also set options in this section. These variables are referred to as module-level or private variables. You can also declare public variables in the General Declarations section of a module. Public variables can be seen and modified by any function or procedure in any module in the database.

A module is also made up of user-defined subroutines and functions. Figure 8.3 shows a subroutine called SayHello. Notice the drop-down list in the upper-left portion of the window titled Chap8Ex—basHello (Code). This is referred to as the Object drop-down list. Subroutines and functions are sometimes associated with a specific object, such as a form or a control within a form. This is the place where such an association is noted. In this case, the subroutine named SayHello is not associated with any object, so the Object drop-down list contains General).


Author Attribution

The preceding information originally appeared in Alison Balter's book Mastering Microsoft Office Access 2007 Development. Reprinted here by author's permission.


Expert Microsoft Access Programmer For Charleston, West Virginia

When you need a Microsoft Access programmer for your Charleston, West Virginia business, call MS Access Solutions at (323) 285-0939. We have over 25 years experience in Microsoft Access programmer solutions. We create Access database applications for all industries, including (but not limited to) medical offices, hospitals, chiropractors, dentists, oil and gas companies, government agencies at the federal, state, and local levels, the U.S. military, universities junior colleges and school districts, horticulture and agriculture, human resource departments and employment agencies, and insurance agencies and insurance corporations.

We work on a number of project types, including:

Enterprise-Level Database Development

For organizations requiring complex data management capabilities, we provide custom development services:

  • Custom Microsoft Access and SQL Server integration creating powerful hybrid solutions
  • Complex relational database architecture designed for optimal performance and scalability
  • Secure multi-user environments with granular permission controls
  • Automated data migration and synchronization between platforms
  • Advanced reporting systems with dynamic filtering and visualization

Specialized Repair & Optimization Services

When your existing database needs expert attention, we can provides programming to fix the problem:

  • Form repair and redesign to restore functionality and improve user experience
  • Query optimization to dramatically improve slow-running database operations
  • Report troubleshooting to fix display issues and calculation errors
  • Macro debugging to restore automated workflows and scheduled tasks
  • VBA code enhancement to eliminate errors and improve performance
  • Database compaction and optimization to reduce file size and boost speed

More Access programmer information on the Microsoft Access programmer Huntington, West Virginia web page.

Charleston, West Virginia Service Area Map