tags:

views:

57

answers:

2

I need to work with Access to create a form based solution - does anyone know of any good quickstarts / tutorials aimed at .net programmers for this? Everything I have found is aimed at Access beginners where all I need is a foot up to save time trawling through each control etc.

A: 

You'll find some basic/conceptual info on Access forms and their management here. This could be a start for your work. There are many other resources available on stackoverflow, often hidden in answers. Do not hesitate to browse the ms-access questions.

Philippe Grondier
+2  A: 

I think you're missing a major point -- until you've used Access like a novice, you won't understand how little programming you need to do to get things done.

Do the beginner tutorials -- just do it.

You'll discover that a huge proportion of the stuff that requires code in other development environments is point-and-click simple in Access. After that, go to something more advanced. You won't get any value out of advanced Access tutorials/books unless you fully understand how to use its design facilities interactively, and one of the chief sources of frustration for programmers coming to Access from other platforms is that they just don't understand the default approach in Access, which is using bound data (suitably filtered at runtime, which is something the novice tutorials won't teach you).

David-W-Fenton
good points by David. I highly suggest starting with the beginner tutorials and goggling for a good VBA reference book. Access is rather simple once you get over the learning curve; being a developer should get you there pretty quickly.
Chad
That makes sense - VBA etc is no problem, it is the default codeless approach that I need to get to grips with
Macros