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 July 20th, 2003, 12:31 PM
Registered User
 
Join Date: Jul 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default EntriesValid?

in the Beginning Access 2002 VBA an EntriesValid proceedure is used. It looks like this

Private Sub cmdFind_Click()
  Call EntriesValid
End Sub

When I run this I get an error message that appears to say that EntriesValid is an unknown function which I believe since I can find no other reference to EntriesValid on either the web or in Access help. Any ideas why this does not work or where else I can get information about EntriesValid?

Thanks,

Hathcock



 
Old July 20th, 2003, 10:02 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 308
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Without having looked at the book at all, I can tell you the problem:

You need to import the module that contains the EntriesValid function/sub
Undoubtedly this will be either documented in the book, or on a CD (if the book comes with a CD)

EntriesValid is not a standard Access function (such as CurrentUser or Now), so you need to either import or type in the code.

Steven

There are 10 kinds of people in the world - those who understand binary - and those with friends









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