Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey I am a university student (math major), but programming since I was little (read: 14). I am starting a new programming job tomorrow at a very big company.

However I just found out that I might be just working with MS Access for a couple of weeks (macros and whatnot).

Can someone just give me a general rundown on how to create and use VB in MS Access. What I mean is how do tables refer to themselves (as objects? as what name?) how to run queries through vb and such.

thanks all.

share|improve this question
5  
" I might be just working with access for a couple of weeks" - and possibly longer!.... – Mitch Wheat May 17 '10 at 3:07

closed as not a real question by HansUp, Ram kiran, Anoop Vaidya, Ed Heal, simont Jan 3 at 4:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

8 Answers

up vote 2 down vote accepted

You would use VBA (Visual basic for Applications)...Here is a Link

share|improve this answer
marked as answer because it was exactly what I needed. – masfenix May 17 '10 at 3:55

Do yourself a favor and get the following book:

Access 2002 Desktop Developer's Handbook
http://www.amazon.com/Access-2002-Desktop-Developers-Handbook/dp/0782140092

Although it appears dated, it's still the definitive reference for developing professional applications in Access. You don't have to read the whole thing; think of it as a cookbook of solutions.

There's really no "short introduction" to Access. If you are building applications with it, there are a few good ways to do it right, and a whole bunch of bad ways to do it wrong. This book will keep you in the corridor with the good ways.

The companion book is:

Access 2002 Enterprise Developer's Handbook
http://www.amazon.com/Access-2002-Enterprise-Developers-Handbook/dp/0782140106

Which you should get if the applications you are developing will be multi-user.

share|improve this answer

Probably the best thing you can do is take a look at what they already have and how they already do it. This way any bad habits you pick up from inexperience with the platform will at least conform to the company's current standards.

share|improve this answer
I understand, but what if at my first day (tomorrow) they ask me to write something quickly? – masfenix May 17 '10 at 3:08
I've never had a first day ask me to write something quickly in a new language that it wasn't going to be simple. If you've any familiarity with MS Visual Studio and Intellisense then you'll be able to work with Access, more or less. – jcolebrand May 17 '10 at 3:33

If you are working with MS Access, do yourself a favour and get a copy of the Litwin and Getz book.

share|improve this answer

In your time out of work, install Access, and try using it as an end user, not a programmer. Try all the point-and-click tools for creating tables, queries, forms, reports, etc. It's only when you are fully familiar with those tools that VBA coding will make any real sense. Ignore macros if you're not working with Access 2010.

ADDED:

If SQL Server as a back end is available or desirable, you might also want to pick up Baron and Chipman's book about SQL Server for Access Developers.

share|improve this answer

Add a reference to the DAO and then you can make Recordset and Connection Objects to query (with sql statements or stored procedures) and manipulate the data. When you make forms, simply pull up the properties and go to the events. This will take you to the code editor (VBA) that will let you program and use those recordset and connection objects I just typed about above.

share|improve this answer
1  
DAO does not have a connection object, but ADO does. All versions of Access have a default reference either to DAO or ADO. The only version that defaults to ADO-only is A2000, and I wouldn't be using A2000 at this late date by choice. DAO is by far the more sensible data interface in Access. – David-W-Fenton May 20 '10 at 1:05
Good point on the connection object, it is simplified to just a database and recordset objects. Masfenix, from your Visual Basic (for applications) Editor select Tools->Refrences from the menu and Add the Microsoft DAO X.X Object Library. After that put in something similar to below. Dim DB As Database Dim RS As Recordset Set DB = OpenDatabase("\\Path_To\DB.mdb") Set RS = TSIDB.OpenRecordset(SQLStatement) Do While RS.EOF = False Msgbox(RS.Fields("Some_Field_Name")) 'Or whatever else you need to do TSIRS.MoveNext Loop RS.Close DB.Close – NoAlias May 22 '10 at 5:38

Depending on experience with Access and version of Access to be used, Matthew MacDonalds's "Access 2007: The Missing Manual" may be worth considering; includes chapters on automating tasks with macros and also with VB.

share|improve this answer

You can alsorefer the link http://office.microsoft.com/en-us/access-help/get-started-with-access-programming-HA001214213.aspx

Here is a simple code to read text file and update into databse through VBA

Sub test()

Dim Db, RST, i

Set Db = CurrentDb
Set RST = Db.OpenRecordset("SELECT * FROM Example")
With RST

   Open "C:\satheesh.txt" For Input As #1

        Do Until EOF(1)

            Input #1, readeddata

            .AddNew
            .Fields(0)=Mid(readeddata,1,6)  // Mid(variable,start byte,long)
            .Fields(1)=Mid(readeddata,7,12)

            .Update

     Loop
   close
end with

end sub

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.