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...
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 9610 - 9639 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9610
Generally speaking, Forms are used to manipulate/view data, reports are used to view data. If you'll notice, there are no AfterInsert, BeforeUpdate etc etc...
Scott
scottmcd9999
Online Now Send Email
Apr 1, 2003
2:32 pm
9611
You can use this code behind a button click: DoCmd.RunCommand accmdRecordsGoToNew ... From: Brett Collings [mailto:bac@...] Sent: Sunday, March...
Scott
scottmcd9999
Online Now Send Email
Apr 1, 2003
2:33 pm
9612
I havn't heard of Alpha in years. They made some database software in the early 90's but never really caught on. I had some old Alpha discs somewhere........
Williams, Peggy
aarrgghh12345
Offline Send Email
Apr 1, 2003
3:11 pm
9613
I don't know much, but check out this link. http://search.officeupdate.microsoft.com/TemplateGallery/result.asp?qu=acces s ... From: "yyyhyyf"...
j
j0austin
Offline Send Email
Apr 1, 2003
3:22 pm
9614
Thank you all for your help. It ended up working out with the update query. Thank you Leeba ... From: ade_suryaatmadja [mailto:ade_suryaatmadja@...] ...
Leeba Friedman
leebasmith
Offline Send Email
Apr 1, 2003
3:28 pm
9615
How can I grab the environmental variable %username% in Windows through MSAccess in VBA code? I want to know which user logged on to WINNT network. Knowing...
rootsyrecords
Offline Send Email
Apr 1, 2003
8:14 pm
9616
I would LOVE to know that also. "rootsyrecords" <Jeremy.Chevrier@ To: ms_access@yahoogroups.com sfdph.org> cc: Subject: [ms_access]...
Richard_Davis@...
bombluv69
Offline Send Email
Apr 1, 2003
8:42 pm
9617
Try this; works for me: http://www.mvps.org/access/api/api0008.htm Paul ... to...
Paul
pbaldy72
Offline Send Email
Apr 1, 2003
8:59 pm
9618
The best way is to use the API call as shown at http://www.mvps.org/access/api/api0008.htm rather than use the Environ function, which can be misled. Jon ...
Jon
applecore99uk
Offline Send Email
Apr 1, 2003
9:03 pm
9619
Hi All, Can I have 3 fields from a table in 1 (one) text box ie: "city, state. post code" if so how????? Thanks...
Rob
hammer_300au
Offline Send Email
Apr 2, 2003
2:59 am
9620
Yes, you have to concatenate them. This is done by specifying the control source (under the data tab in the properties sheet) as =city & " " & state & " " &...
Guy Harley
guyharleyaus
Offline Send Email
Apr 2, 2003
3:08 am
9621
In the control source of your text box type: =[FieldNameforCity]&", " &[FieldNameforState]& " " &[FieldNameforPostCode] ... From: Rob...
Sam Maroney
samaroney
Offline Send Email
Apr 2, 2003
3:53 am
9622
Hi everybody, I would like to know why Access 2000 does not show a field in the query result after you use statistics and a criterion for that field. I know...
Alena Heisler
ajh_1507
Offline Send Email
Apr 2, 2003
7:43 am
9623
I'm not sure I have understood your problem, but it seems that you want to have in the result of the query both the names of your Clients in Seattle and the...
Clauss Gilbert
gilbert.clauss@...
Send Email
Apr 2, 2003
9:28 am
9624
I have a data entry form that opens up audit records. One of the fields is the audit data. I want to have a subform that will automatically display all of the...
Sandra Maroney
samaroney
Offline Send Email
Apr 2, 2003
10:28 am
9625
I'm sorry, I meant to say "Audit DATE" for the field name, not audit data. ... From: Sandra Maroney [mailto:smaroney@...] Sent: Wednesday, April 02,...
Sam Maroney
samaroney
Offline Send Email
Apr 2, 2003
10:37 am
9626
Hello, I have implemented a query that gives the following output: x ID y 1 London 1 London 2 London 2 " 1 " 3...
garbzuk
Offline Send Email
Apr 2, 2003
5:15 pm
9627
I'm still new to access, sorry. trying to develop a more usable database for an agency that has been inputting directly into one table. So have split the...
M&M Coday
codayclan
Offline Send Email
Apr 2, 2003
5:39 pm
9628
This was copied from MSDN. Copy and paste the link below into your browser's address bar. ' ' More than an incremental improvement AutoNumber fields provide a...
allan_v_pimble_sr
allan_v_pimb...
Offline Send Email
Apr 2, 2003
9:17 pm
9629
select x, y, count(*) from table group by x, y having count(*) > 3 will give you the ones that have at least 3 In query designer look at the totals option,...
simon larsen
goats_fan
Offline Send Email
Apr 2, 2003
10:06 pm
9630
... FAO Simon Larson reply, Why have you given me the code that will list all x whose y is greater than 3 when I want to list only the x whose y occurs most...
Martin Garbutt
garbzuk
Offline Send Email
Apr 3, 2003
12:10 am
9631
possibly you are after the top 1 clause: select top 1 x, y from table group by x,y order by count(*) desc may do what you are after. Simon Larsen...
simon larsen
goats_fan
Offline Send Email
Apr 3, 2003
12:13 am
9632
Clauss: Thank you for your answer. Unfortunately, no that was not the answer to my question. So hopefully, I will explain it right this time. Basically, all I...
Alena Heisler
ajh_1507
Offline Send Email
Apr 3, 2003
4:19 am
9633
... How Rude ! ! ! ! ! ! !...
Brett Collings
zkbac
Offline Send Email
Apr 3, 2003
4:58 am
9634
is it possible to have users access a database without having security rights to the actual database. that is, the user must not be able to see the actual .mdb...
rajeshb
boodoorajesh
Offline Send Email
Apr 3, 2003
11:40 am
9635
The "Where clause" in any type of query is merely a delimiting device ... you're basically telling the database to show you all records which satisfy this...
Scott
scottmcd9999
Online Now Send Email
Apr 3, 2003
1:36 pm
9636
Agreed. I believe I'd let Mr. Garbutt hack this one out on his own. ... From: Brett Collings [mailto:bac@...] Sent: Wednesday, April 02, 2003...
Scott
scottmcd9999
Online Now Send Email
Apr 3, 2003
1:38 pm
9637
Hi, Does anyone have an examples of tutorials of using Winsock with Access? Regards Rolf...
Rolf Dalhaug
nekrumproject
Offline Send Email
Apr 3, 2003
1:40 pm
9638
Hello would any body help me please I have created a report, it reads from a crosstab query and then display the result through DAO code. My problem is when I...
alshamsi_02
Offline Send Email
Apr 3, 2003
1:56 pm
9639
I've designed a simple form to track the training courses that employees have taken. The way it works is that the employee's employee number, first name and...
Jen Hawley
jennhaw2002
Offline Send Email
Apr 3, 2003
3:48 pm
Messages 9610 - 9639 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