Wrox Programmer Forums
|
Access VBA Discuss using VBA for Access programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 10th, 2010, 05:07 AM
Registered User
 
Join Date: Jan 2010
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default VBA Access Beginner

I want to learn VBA for Access. I have books and looked at tutorials and I am signing up for an online class. My problem is everything assumes you have some previous programmer experience. Since I am on level .00 I need to know what DIM means, (), strings, so on and so forth. Can anyone recommend a beginning beginners help for VBA for Access please.
 
Old March 11th, 2010, 08:52 PM
Registered User
 
Join Date: Mar 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Red face RE: VBA Access Beginner

Code:
I need to know what DIM means, (), strings, so on and so forth
Good luck. Hopefully the online class will not assume you've had programming experience. The whole idea of Basic, is that is/was intended to be simple/basic.

DIM - short for 'DIMENSION' - as in reserve a certain amount of space for a variable.

variable: a special term used to store values/data for manipulation like:
Code:
  Dim x,y as integer
  x=5
  y=6
where in the above example, two variables are defined and given the number values of five and six.

'string' - refers to text. No knitting applies here. I'm not sure how 'string' came to be associated with text, but 'string functions' generally manipulate small quantities of text. - there are 'substring' functions in some languages which will 'cut' a string at specified points and return a smaller value.

parenthesis () are often used to indicate a grouping of some type, in functions to indicate parameters.... Hmm. I can see you asking what's a parameter, what's a function? .....

Good luck. I'm not a VBA expert myself. but I have had some exposure to some languages. Reading/perusing this and other forums, using google, online help and TIME will help you gain a better understanding of all the above and more. (loops, conditional constructs, events, objects, classes, dll's)

If you ever feel you're not progressing, look back on this thread in a few weeks. You'll get an idea of how much you've learned.

Good Luck.
John





Similar Threads
Thread Thread Starter Forum Replies Last Post
Code works in Excel VBA but not Access VBA fossx Access VBA 2 May 21st, 2007 08:00 AM
Access vba rookieat this Access VBA 6 February 7th, 2004 03:01 PM
please help! VBA in Access LittleCity Access VBA 3 December 3rd, 2003 08:53 PM
Beginner - Access '02 Autonumber sequencing logic? Mita Access 10 September 25th, 2003 03:46 PM
Access XP VBA compatibility issues w/ Access 2000 bourgeois02 Access VBA 1 August 19th, 2003 04:14 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.