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...
Show off your group to the world. Share a photo of your group with us.

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 41709 - 41738 of 76891   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
41709
I run a query that tells me what vehicles are down for repair. That query is run against the VehicleID table and the vehcile history table and it works well....
Jim C
liteguy.rm
Offline Send Email
Oct 1, 2006
1:16 pm
41710
Fairly simple; 2 ways come immediately to mind. Best is a LEFT JOIN, which the unmatched query wizard will lead you through. Less efficient would be a...
Paul
pbaldy72
Offline Send Email
Oct 1, 2006
2:01 pm
41711
Norhaya Formatting is most easily done in the form or report text box. Your example did not actually display properly in the email. Can you describe in words...
Bill Mosca
wrmosca
Offline Send Email
Oct 1, 2006
3:03 pm
41712
Thanks, I should have thouight of that. I forgot to look at the wizards....
Jim C
liteguy.rm
Offline Send Email
Oct 1, 2006
3:21 pm
41713
Thomas I see that no one has responded to your post. If I remember correctly, the ability to use Access on handhelds was dropped. But I could very well be...
Bill Mosca
wrmosca
Offline Send Email
Oct 1, 2006
3:28 pm
41714
Hi: How to i union both queries. Both queries match record from tabl tech_id. This is the result which i need. First 2nd query run and match with table...
Salena lux
salena.rose@...
Send Email
Oct 1, 2006
5:05 pm
41715
Dear Group, My searchResult form is based on a parameter query. The parameters are passed to qrySearch through Search form. The qrySearch is based on...
access_kri
Offline Send Email
Oct 1, 2006
9:14 pm
41716
Hi Folks, I'm new here and I have what is probably a simple question. I need to produce a report from a maintenance database. Two files are involved, the...
Katrina Adams
katrinakvr
Offline Send Email
Oct 1, 2006
9:31 pm
41717
Kumar- A command button is easiest. In the Click event of the button use DoCmd.OpenForm with a WhereCondition to open another form bound to the table ...
John Viescas
jlviescas
Offline Send Email
Oct 1, 2006
9:43 pm
41718
Katrina- With a query something like this: SELECT tblBuoys.*, tblBuoyData.* FROM tblBuoys INNER JOIN tblBuoyData ON tblBuouys.BouyID = tblBuoyData.BouyID WHERE...
John Viescas
jlviescas
Offline Send Email
Oct 1, 2006
10:00 pm
41719
I see the option to upsize to Microsoft SQL Server is available even back in Access 2000. Can someone take the mystery out of the process for me. Is this a...
jeepmanusa
Offline
Oct 2, 2006
3:25 am
41720
Hey Christopher, * Is it worthwhile? SQL Server is industry standard backend technology with a huge install base. Worthwhile features vs Access are that it's...
Brett Collings
sumbrett
Offline Send Email
Oct 2, 2006
3:52 am
41721
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the MS_Access_Professionals group. File :...
MS_Access_Professiona...
Send Email
Oct 2, 2006
5:55 am
41722
Linda, As mentioned earlier, reports sent directly from Access to Excel are known to suffer from the following shortcomings, making the outcome quite...
A.D.TEJPAL
adt_y
Offline Send Email
Oct 2, 2006
5:57 am
41723
I'm brand new to this list and I'm wondering if you could just point me in the right direction. I've searched the Access help and Googled till my brain is...
burkhartmg
Offline
Oct 2, 2006
6:01 am
41724
Brett- The consensus I've seen online from other MVPs is that staying with an mdb front end with linked tables is the better / faster / cheaper way to go to ...
John Viescas
jlviescas
Offline Send Email
Oct 2, 2006
8:27 am
41725
Dear Mr. Tejpal, Many thanks for your guidance and sample coding. I was precisely looking for this type of functionality in my database. I will try it out and...
access_kri
Offline Send Email
Oct 2, 2006
8:32 am
41726
Mike- The trick is to open your code and choose References from the Tools menu. Scroll down the list and select the checkmark box next to the Microsoft Excel...
John Viescas
jlviescas
Offline Send Email
Oct 2, 2006
8:38 am
41727
Hi TJD, I tested your tip and is working fine. Do I have to create separate tables for each combobox of my searchForm or one table with fields for each search...
access_kri
Offline Send Email
Oct 2, 2006
9:58 am
41728
I have a text box in a form. I want it to lookup a value from a query. The syntax I have is: =DLookUp("[RateEnd]","DollarQuery","CustomerID" &...
gav9000
Offline Send Email
Oct 2, 2006
10:46 am
41729
Gav- Close, but no cigar. Try this: =DLookUp("[RateEnd]","DollarQuery","CustomerID=" & [CustomerID]) John Viescas, author Building Microsoft Access...
John Viescas
jlviescas
Offline Send Email
Oct 2, 2006
11:21 am
41730
It works! Thanks John. ... gav9000 ... query. ... [MainForm]! ... syntax ... nals@yahoogroups.com, ... nals@yahoogroups.com ... nals@yahoogroups.com] On ... ...
gav9000
Offline Send Email
Oct 2, 2006
11:31 am
41731
A book that I found very useful for a project that I did is: Integrating Excel and Access by Michael Schmatz, from O'Reilly Regards, CJ ... [Non-text portions...
cj
mvaccount
Offline Send Email
Oct 2, 2006
1:17 pm
41732
I think my table structure may be a little too 'flat'. I have basically 1 big table, 1 main form and several subforms which are necessary because one form...
gav9000
Offline Send Email
Oct 2, 2006
2:36 pm
41733
Hi Eddie, I am just now testing this. Please forgive me but I am an absolute beginner with VBA. When I try to run the code in the vb window another window...
Lisa Thorington
lisarthorington
Offline Send Email
Oct 2, 2006
2:38 pm
41734
Gav- You're getting the "write conflict" because you're trying to edit the one table from two forms at the same time. You really need to fix your table design...
John Viescas
jlviescas
Offline Send Email
Oct 2, 2006
3:20 pm
41735
Gav Without even seeing your design, from what you are saying, you need to read up on normalized tables. We have a link or 2 in our links section that should...
Bill Mosca
wrmosca
Offline Send Email
Oct 2, 2006
3:26 pm
41736
Thanks for the feedback, everyone! I didn't want to change the References since I'd never know the environment it would be running in. I finally found some...
burkhartmg
Offline
Oct 2, 2006
3:30 pm
41737
hi guys, im just a beginner with using access and i only know the basics. How do you create a simple password for a form with a only 1 user? Thanks guys, help...
norrisjay_perez
Offline Send Email
Oct 2, 2006
4:59 pm
41738
Hi, Norhaya, If it is either a form or report you are formatting, there are two easy ways to do it. First is have the Formatting toolbar showing. To do this,...
banphriosa
Offline Send Email
Oct 2, 2006
5:26 pm
Messages 41709 - 41738 of 76891   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