Search the web
Sign In
New User? Sign Up
MS_Access_Professionals · MS Access Professionals
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16044 - 16073 of 76926   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16044
This where I show myself up as a total newbie...the function below came from the Northwind sample db...I was following a procedure in the help file that...
Nige
nigelhjackson
Offline Send Email
Jul 1, 2004
8:37 am
16045
Thanks John, I've had a problem getting the data from Access to Excel, but have now succeeded using the following code... DoCmd.OutputTo acOutputQuery,...
Nige
nigelhjackson
Offline Send Email
Jul 1, 2004
8:43 am
16046
Again out of curiousity, could you post the code that was in the 2000 version? I only have sample db's installed for all versions, and just at a glance, I'm...
Daniel Koster
danielgkoster
Offline Send Email
Jul 1, 2004
8:49 am
16047
here you go... 2000... Option Compare Database Option Explicit Function IsLoaded(ByVal strFormName As String) As Boolean ' Returns True if the specified form...
Nige
nigelhjackson
Offline Send Email
Jul 1, 2004
9:17 am
16048
Hmm, I guess the IsLoaded function on the form object must be new. I don't have the time for experimentation right now, but my guess is that the 2000 version...
Daniel Koster
danielgkoster
Offline Send Email
Jul 1, 2004
9:40 am
16049
Hi, I want to write a SQL query in Access as follows : select year, ((count[field1] from table1 where status='Y')/count[field1]) i.e. I need to calculate a...
The Maverick
theflyingcon...
Offline Send Email
Jul 1, 2004
10:38 am
16050
Brett- Don't get me started on Help. They trashed it in Access 2000, and it has never recovered. It's the #1 complaint item amongst MVPs. John Viescas,...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:38 am
16051
Julie- The name course_id implies a number, so get rid of the quotes: CurrentDb.Execute "INSERT INTO tblCourseStats (course_id) VALUES(" & Me.course_id & ")" ...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:39 am
16052
What error are you getting? The syntax look OK based on the information you've given us. Are there other fields in the record which are required? Charles ... ...
Rogers, Charles
chastfr
Offline Send Email
Jul 1, 2004
11:43 am
16053
Thanks Bill, You're a champ as always Mitch ... each one. ... see a ... slows up ... propVal Then ... propVal & "." ... do I...
J. Mitchell Grossack
jrad1981
Offline Send Email
Jul 1, 2004
11:50 am
16054
Nige- Pardon me for saying so, but "limited level of knowledge" and "clients" don't belong together. As a client, why would I want to take my automobile in...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:50 am
16055
Daniel- I agree. You're pretty safe as long as you're not developing an Access project (.adp), you're not using Data Access Pages (they're broken in 2000 and...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:55 am
16056
... I know, I know ... :( Most of the Property-F1's work, the SubDataSheet one is the first one I have come across that doesn't. I wondered if it had been...
Brett Collings
zkbac
Offline Send Email
Jul 1, 2004
12:05 pm
16057
Nige- Go find the post "controlling excel from access" sent on Monday to this group. You basically need to start a session with Excel, open your workbook, and...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
12:06 pm
16058
Hello All, I have written a public function in the VB code section of a Switchboard form, and I'm trying to get it to run from a switchboard button using the...
David Stein
dstein36
Offline Send Email
Jul 1, 2004
12:07 pm
16059
The 2000 (and earlier) version uses SysCmd: Function IsLoaded(ByVal strFormName As String) As Boolean ' Returns True if the specified form is open in Form view...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
12:09 pm
16060
Bill, I have one machine with 97, 2000, 2002, and 2003 all installed on it without any problem running any of them. Robert...
Robert L. Stewart
raibeart_ste...
Offline Send Email
Jul 1, 2004
12:20 pm
16061
I hope you're being honest about your "level of ... yes, I am very honest...I am not a programmer/developer...and never pretend to be one! in the course of the...
Nige
nigelhjackson
Offline Send Email
Jul 1, 2004
12:29 pm
16062
Mav- You must write a complete subquery. Something like: (SELECT Count([Field1] FROM Table 1 WHERE status = 'Y')/count([Field1]) But, if you want a...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
12:41 pm
16063
In Access 2002 the "triple state" property of a checkbox form control doesn't work when I try to use it. When I enable the triple state property, the check...
Dan Lindstrom
mill4481
Offline Send Email
Jul 1, 2004
1:24 pm
16064
Reported....
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
1:26 pm
16065
Dave- The Switchboard code uses Application.Run to execute the procedure. Public procedures in a form module are actually methods of the form, so you can call...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
1:39 pm
16066
Nige- Ah, good! So, by "clients" you mean people who have hired you for your expertise in other areas, but some of the things they've asked you to do just cry...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
1:41 pm
16067
Dan- Works for me. Make sure the Enabled property is set to Yes. Is the control bound to a field? Is that field updatable? John Viescas, author "Microsoft...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
1:44 pm
16068
That function will not work in 2000. The below function works in 2000 and 97. I'm guessing it will also work in XP and 2003. Function IsLoaded(ByVal...
Bill Mosca
wrmosca
Offline Send Email
Jul 1, 2004
2:31 pm
16069
much better put by you...but exactly right! Nige ... your ... to do ... happy to try...
Nige
nigelhjackson
Offline Send Email
Jul 1, 2004
2:36 pm
16070
Hello All On a report I have 3 differents sub-reports not linked to each other, I need to print 5 records on a page for all the three reports on the main...
kamat_anita
Offline Send Email
Jul 1, 2004
2:57 pm
16071
Julie, Create 2 identical queries. Suffix one with a 0 (zero) and the other with a 1. The 0 query is your base query. Then use the following code: dim qdf as...
Robert L. Stewart
raibeart_ste...
Offline Send Email
Jul 1, 2004
2:58 pm
16072
John, Thanks for your response. I have done as you suggested: I put my code into a public function in a module (named CodeModule), but I'm still getting the...
David Stein
dstein36
Offline Send Email
Jul 1, 2004
3:09 pm
16073
Lack of help on the subject, not an Access Bug....
Robert L. Stewart
raibeart_ste...
Offline Send Email
Jul 1, 2004
3:21 pm
Messages 16044 - 16073 of 76926   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help