A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Access skill level question



 
 
Thread Tools Display Modes
  #1  
Old November 30th, 2005, 05:38 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

I have been reviewing the Northwind sample database application in Access
2003. I have completed my own application like the NW database presents. I
feel that I understand how the examples were coded and created. Microsoft
does not have an assessment or certification for VBA or I don't know of any.
What I wanted to know is? Where would you guys put the skill level at with
being able to create an Access application similar to the Northwind database
application.

I just wish Microsoft had some sort of certification or assessment for VBA
in Access.
  #2  
Old November 30th, 2005, 08:16 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

There is no such thing as VBA now. VBA was a subset of VB used in earlier
versions of Access but the latest versions of Access uses the full VB
language.
Access is not regarded as a serious development tool but as a single
component of the Office suite, so a certification would have questionable
value.

"kw_uh97" wrote:

I have been reviewing the Northwind sample database application in Access
2003. I have completed my own application like the NW database presents. I
feel that I understand how the examples were coded and created. Microsoft
does not have an assessment or certification for VBA or I don't know of any.
What I wanted to know is? Where would you guys put the skill level at with
being able to create an Access application similar to the Northwind database
application.

I just wish Microsoft had some sort of certification or assessment for VBA
in Access.

  #3  
Old November 30th, 2005, 08:38 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

Say what? Access uses VBA, not VB. Earlier versions of Access used Access
Basic, but Access has used VBA since Access 95 (I believe it was). In fact,
all of the Office suite uses VBA, not VB. There are differences between VB
and VBA.

And it depends on who you talk to whether Access is a "serious development
tool".

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"mscertified" wrote in message
...
There is no such thing as VBA now. VBA was a subset of VB used in earlier
versions of Access but the latest versions of Access uses the full VB
language.
Access is not regarded as a serious development tool but as a single
component of the Office suite, so a certification would have questionable
value.

"kw_uh97" wrote:

I have been reviewing the Northwind sample database application in

Access
2003. I have completed my own application like the NW database presents.

I
feel that I understand how the examples were coded and created.

Microsoft
does not have an assessment or certification for VBA or I don't know of

any.
What I wanted to know is? Where would you guys put the skill level at

with
being able to create an Access application similar to the Northwind

database
application.

I just wish Microsoft had some sort of certification or assessment for

VBA
in Access.



  #4  
Old November 30th, 2005, 08:39 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

Many of us consider that Northwind has some significant flaws in it, but I'd
say it would require at least a medium level of skill to build an
application like it.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"kw_uh97" wrote in message
...
I have been reviewing the Northwind sample database application in Access
2003. I have completed my own application like the NW database presents. I
feel that I understand how the examples were coded and created. Microsoft
does not have an assessment or certification for VBA or I don't know of

any.
What I wanted to know is? Where would you guys put the skill level at with
being able to create an Access application similar to the Northwind

database
application.

I just wish Microsoft had some sort of certification or assessment for VBA
in Access.



  #5  
Old November 30th, 2005, 09:15 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question


"Douglas J Steele" wrote in message
...
Say what? Access uses VBA, not VB. Earlier versions of Access used Access
Basic, but Access has used VBA since Access 95 (I believe it was). In

fact,
all of the Office suite uses VBA, not VB. There are differences between VB
and VBA.

And it depends on who you talk to whether Access is a "serious development
tool".

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


Absolutely! I'm not certain about Access 95, but certainly since Access 97,
VBA has been an integral part of Access. VB never has. And, they are very
definitely NOT the same.


  #6  
Old November 30th, 2005, 11:38 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

Hard to tell. The hard part of the northwind is not the coding, but in fact
the *design* part.

I talk about ms-access skill levels in the following article of mine....it
might help....

http://www.members.shaw.ca/AlbertKal...000000003.html

There is a few places in the above article where I mention skill levels, and
later in the article there is even some questions that I would ask potential
developers.

--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


  #7  
Old November 30th, 2005, 11:50 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

Absolutely! I'm not certain about Access 95, but certainly since Access
97,
VBA has been an integral part of Access. VB never has. And, they are
very
definitely NOT the same.


Actually, since 97, VB, and VBA actually share the same compiler, and even
the same code base.

So, in fact the VBA and VB do share the same syntax. The only difference is
that forms object model is complete different. Since applications are built
around the forms object, then this is a significant issue. However, the
syntax of the language is identical to VB sans the forms object model.

So, one could argue that since a97, ms-access does share the same code base
+ compiler as VB. However, it is still called VBA.

Perhaps a better way of stating this is that VBA is now the same code base
as VB6, sans the forms of VB. Microsoft worked hard to have VBA be in
harmony with VB6 so as not have to maintain two separate code bases. I
believe that goal was obtained by office 97, if not office 2000.

So, VBA is different then VB6..but they are essentially the same language,
and as far as I know, share the same compiler. We just don't have some of
the features exposed (such as native compile mode, and threading for example
that don't work with VBA anyway).

I am complete open to suggestions that show me wrong on the above...

--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


  #8  
Old December 1st, 2005, 12:14 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question

"Albert D.Kallal" wrote in message
...
Absolutely! I'm not certain about Access 95, but certainly since Access
97,
VBA has been an integral part of Access. VB never has. And, they are
very
definitely NOT the same.


Actually, since 97, VB, and VBA actually share the same compiler, and even
the same code base.

So, in fact the VBA and VB do share the same syntax. The only difference

is
that forms object model is complete different. Since applications are

built
around the forms object, then this is a significant issue. However, the
syntax of the language is identical to VB sans the forms object model.

So, one could argue that since a97, ms-access does share the same code

base
+ compiler as VB. However, it is still called VBA.

Perhaps a better way of stating this is that VBA is now the same code base
as VB6, sans the forms of VB. Microsoft worked hard to have VBA be in
harmony with VB6 so as not have to maintain two separate code bases. I
believe that goal was obtained by office 97, if not office 2000.

So, VBA is different then VB6..but they are essentially the same language,
and as far as I know, share the same compiler. We just don't have some of
the features exposed (such as native compile mode, and threading for

example
that don't work with VBA anyway).

I am complete open to suggestions that show me wrong on the above...


And I'm definitely not going to mention VB.Net


  #9  
Old December 1st, 2005, 12:28 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question



And I'm definitely not going to mention VB.Net


Well, that one is different!! However, there is the SOAP add in tool kit for
office. So, while you can't write web services in ms-access, you can
certanly use them....


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


  #10  
Old December 1st, 2005, 12:51 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Access skill level question


"Albert D.Kallal" wrote in message
...
Absolutely! I'm not certain about Access 95, but certainly since Access
97,
VBA has been an integral part of Access. VB never has. And, they are
very
definitely NOT the same.


Actually, since 97, VB, and VBA actually share the same compiler, and even
the same code base.

So, in fact the VBA and VB do share the same syntax. The only difference

is
that forms object model is complete different. Since applications are

built
around the forms object, then this is a significant issue. However, the
syntax of the language is identical to VB sans the forms object model.

So, one could argue that since a97, ms-access does share the same code

base
+ compiler as VB. However, it is still called VBA.

Perhaps a better way of stating this is that VBA is now the same code base
as VB6, sans the forms of VB. Microsoft worked hard to have VBA be in
harmony with VB6 so as not have to maintain two separate code bases. I
believe that goal was obtained by office 97, if not office 2000.

So, VBA is different then VB6..but they are essentially the same language,
and as far as I know, share the same compiler. We just don't have some of
the features exposed (such as native compile mode, and threading for

example
that don't work with VBA anyway).

I am complete open to suggestions that show me wrong on the above...

--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


I don't disagree that the two share a common code base and hence identical
syntax. But there is a great deal in VB that is not in VBA. The statement
was made that Access no longer uses VBA but full VB. That simply isn't
correct.

Randy


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trying to email a Snapshot File via Macro. ERROR: "The formats . titlepusher General Discussion 5 November 10th, 2005 03:53 AM
Survey Results SAm Running & Setting Up Queries 10 May 17th, 2005 08:32 PM
starting access 97 Edward Letendre General Discussion 2 January 26th, 2005 02:15 AM
is Access 2003 any better than XP? Gorb General Discussion 4 November 11th, 2004 09:44 PM
Question on lauching access and syntax error during batch file Adam Raff General Discussion 2 August 12th, 2004 04:20 AM


All times are GMT +1. The time now is 01:51 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.