Search the web
Sign In
New User? Sign Up
ms_access · Help and advice for users of MS access
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 19392 - 19421 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19392
Design view, properties reveals the following: SELECT CNTRLS.DATE, CNTRLS.CONTROL, CNTRLS.TYPE, CNTRLS.PAYOR, CNTRLS.CNTRL7, PKUPS.[PU NAME], PKUPS.[PU...
swordsgen
Offline Send Email
Feb 1, 2006
4:30 pm
19393
Text Box properties- validation rule- I want to restrict values to uppercase letters from A-B inclusive in TextBox1 I want to restrict values in another Text...
ME
holein_one2001
Offline Send Email
Feb 1, 2006
4:53 pm
19394
OK. Your relationships are: DLVS -> CNTRLS PKUPS -> CNTRLS To be able to insert new rows into CNTRLS, the query must contain both foreign keys, and they must...
John Viescas
jlviescas
Offline Send Email
Feb 1, 2006
5:12 pm
19395
Mark- To restrict the values in a field to just A or B, use: In("A", "B") ... To restrict a value in a field based on what's in another field, you must define...
John Viescas
jlviescas
Offline Send Email
Feb 1, 2006
5:32 pm
19396
I'm not sure that I understand your question. When you say " I want to restrict values to uppercase letters from A-B inclusive" aren't you saying you want to...
Guy Harley
guyharleyaus
Offline Send Email
Feb 1, 2006
11:08 pm
19397
Hi All, I am currently in the throws of setting up a "Work Order" database for my company. What I need to accomplish is have a query run every so often that ...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 1, 2006
11:37 pm
19398
Mike- How do you plan to determine a Work Order is new? John Viescas, author "Building Microsoft Access Applications" "Microsoft Office Access 2003 Inside Out"...
John Viescas
jlviescas
Offline Send Email
Feb 2, 2006
12:11 am
19399
Hi John, The query will look for "Status=0" in my "WorkOrders" table. ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com] On Behalf Of John...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 2, 2006
2:13 am
19400
Text Box properties- validation rule- I want to restrict values to uppercase letters from A-B inclusive in TextBox1 I want to restrict values in another Text...
holein_one2001
Offline Send Email
Feb 2, 2006
3:45 am
19401
I apologize to the group. I didn't realize my first post got posted. Thank you, Mark Espinosa __________________________________________________ Do You Yahoo!?...
ME
holein_one2001
Offline Send Email
Feb 2, 2006
3:53 am
19402
Thank you all for your help. I may have simplified my question too much. I really want to restrict text box input to a single letter A through N. The text box...
holein_one2001
Offline Send Email
Feb 2, 2006
4:44 am
19403
Thinking laterally, wouldn't you be better off with a combo box in place of textbox1. You could limit the rowsource of the combo box to the permitted entries....
Guy Harley
guyharleyaus
Offline Send Email
Feb 2, 2006
5:08 am
19404
Mike- Perhaps use the DCount function to do the test in the Timer event: If 0 < DCount("*", "tblWorkOrders", "Status=0") Then ' pop open the form ...
John Viescas
jlviescas
Offline Send Email
Feb 2, 2006
1:59 pm
19405
Thanks John - Will give it a shot! ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com] On Behalf Of John Viescas Sent: Thursday, February...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 2, 2006
2:02 pm
19406
Does anyone here know Access experts located in the Memphis area. My skills continue to improve but are beyond the point of most training programs locally. I...
Dave Moreau
memairport
Offline Send Email
Feb 2, 2006
2:46 pm
19407
Hello everyone, I was wondering if anyone has one of these already. it does inventory and then also allows people to submit orders. So that the main billing ...
steverpayne
gocheaphsting
Offline Send Email
Feb 2, 2006
5:13 pm
19408
The sample database that comes with Access called "Northwind" is a customer / product / orders database it is a nice start to an inventory database. As for the...
Crosier, Dawn
dlc110161
Offline Send Email
Feb 2, 2006
9:13 pm
19409
Well the this database will be used for healthcare order management. Would northwind would work for us? is it easily changeable? Sincrerely, Steve Payne ...
Payne, Steve
gocheaphsting
Offline Send Email
Feb 2, 2006
10:09 pm
19410
Hi All, What event should I use if I have a combo box that is based on a query and I need to requery it as soon as I click the down arrow? I've tried using...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 2, 2006
10:10 pm
19411
Northwind is totally changeable. However, I would use it for an example and create your own along side of it. That way you can use your own terms and it...
Crosier, Dawn
dlc110161
Offline Send Email
Feb 2, 2006
10:54 pm
19412
I am asking for help...to those who are expert in MS Acces. I'm preparing for db using msaccess. I am not familiar yet with its functions. I need to...
laferrer1024
Offline Send Email
Feb 3, 2006
11:09 am
19413
Gee, based on what little information you provided, this sounds like homework to me. If it is, then you need to work through the development of the database...
papparuff@...
papparuff
Offline Send Email
Feb 3, 2006
11:24 am
19414
I would like to record a form that would be the same as another one i already have, but that would filter data (for instance field "Date of death" is null.) Is...
Clauss Gilbert
gilbert.clauss@...
Send Email
Feb 3, 2006
3:19 pm
19415
Try in the Got Focus Me.ComboBoxName.Requery Mike Bisson <mbisson@...> wrote: Hi All, What event should I use if I have a combo box that is based on...
Lonnie Johnson
prodevmg
Offline Send Email
Feb 3, 2006
3:27 pm
19416
In the query tab click NEW, then when the pop box appears, click Simple Query Wizard. There will be a tab in the section that ask if you want to "GROUP" by...
Lonnie Johnson
prodevmg
Offline Send Email
Feb 3, 2006
3:30 pm
19417
Why would you need to requery the combobox each time you press the down-arrow? You should only need to requery a combobox when you actually...
papparuff@...
papparuff
Offline Send Email
Feb 3, 2006
3:35 pm
19418
That's exactly what is happening - I have 2 comboboxes on my form, NewWOList and PendingWOList. What happens is, new work orders show up in the NewWOList...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 3, 2006
3:54 pm
19419
When do you run the update query? Right after the update query runs is when you should refresh/requery the two comboboxes. John -- John V. Ruff – The Eternal...
papparuff@...
papparuff
Offline Send Email
Feb 3, 2006
4:02 pm
19420
They select a new WO from the NewWOlist combo box and click a button that says "show me details" which brings up the "Acknowledgment" form. This form contains...
Mike Bisson
erpguruwannabe
Offline Send Email
Feb 3, 2006
4:10 pm
19421
There are two ways to do the requery once after each update. 1. In the "Acknowledge WO" button's click event, after the update query runs add two lines of...
papparuff@...
papparuff
Offline Send Email
Feb 3, 2006
4:20 pm
Messages 19392 - 19421 of 21712   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