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 14741 - 14770 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14741
Choose SQL View from the View menu when you're in Query Design. John Viescas, author "Microsoft Office Access 2003 Inside Out" "Running Microsoft Access 2000" ...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:38 am
14742
Did the query run and just not do anything? Or did the query fail with an error? You must be very precise with your syntax in SQL -- for example, you must ...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:53 am
14743
LTP, The SQL that John provided worked for me. I did have to remove the ";" from one of the lines. I am also new to Access 2000 and I'm learning by trial and...
j
j_austan
Offline Send Email
Jul 1, 2004
2:06 pm
14744
To simplify matters I have created: 1 table called AllCompanies with only one field CompanyName 2. table called CompanyDelete with only one field CompanyName ...
portella@...
ltportellar
Offline Send Email
Jul 1, 2004
8:26 pm
14745
I just made it work. My thanks to you, John V and many others around the world literally. regards [Non-text portions of this message have been removed]...
portella@...
ltportellar
Offline Send Email
Jul 1, 2004
8:54 pm
14746
thank you John. It worked. Now I have to figure out how to use the CompanyDelete file with the daily AllCompanies. I am sure that I will not have to type the...
portella@...
ltportellar
Offline Send Email
Jul 1, 2004
8:56 pm
14747
Thank you, thank you and thank you. It works beautifully. Now my next problem is how to keep using the same CompanyDelete file and not having to create it...
portella@...
ltportellar
Offline Send Email
Jul 1, 2004
9:03 pm
14748
DELETE AllCompanies.* FROM AllCompanies WHERE AllCompanies.CompanyName IN (SELECT CompanyName FROM CompanyDelete) John Viescas, author "Microsoft Office Access...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:02 pm
14749
Well, as long as you don't delete the CompanyDelete file, it should be there to use again the next time. John Viescas, author "Microsoft Office Access 2003...
John Viescas
jlviescas
Offline Send Email
Jul 1, 2004
11:07 pm
14750
the new AllCompanies table would have to have its own Query to delete unwanted records, will that query automatically look for the names in companyDelete?...
portella@...
ltportellar
Offline Send Email
Jul 2, 2004
2:28 am
14751
Dear All, Anyone knew how to use Access to control over the barcode printing. Or put it this way, how to write a barcode printing program (maybe like the one...
arnold choo
arnoldcch
Offline Send Email
Jul 2, 2004
3:15 am
14752
... Yep, you use a Barcode font, i got one from here http://www.bizfonts.com/free/. Better than that though is the "Barcode Primer" here ...
Brett Collings
zkbac
Offline Send Email
Jul 2, 2004
3:40 am
14753
Hi everyone, I've had a couple demo's promised for a while and I finally got motivated and finished them. The first demo show's how to manipulate the clipboard...
Neil Squires
greaterdesig...
Offline Send Email
Jul 2, 2004
5:01 am
14754
Does anyone know the way how to solve the problem like this: A text box with input mask "AAAAAA" is created to capture user input. Few users found that the...
william_cheuung
Offline Send Email
Jul 2, 2004
8:33 am
14755
hi, Transaction table with records from Jan, 01 2003 to Dec, 31 2003. How do I extract data from a table with same day for the past 3 or more months. e.g. of...
captain_2010
Offline Send Email
Jul 2, 2004
3:40 pm
14756
Well, you can do: WHERE Day([MyDate]) = [Select the day number you want:] .. but what do you plan to do about days 29-31? Not all months have those days. John...
John Viescas
jlviescas
Offline Send Email
Jul 2, 2004
5:19 pm
14757
Thanks Brett! I tried but wondering you got any clue how to interact the data from Access to the Barcode font (working particularly with format EAN-13)? I...
arnold choo
arnoldcch
Offline Send Email
Jul 4, 2004
12:37 pm
14758
... It's a while since I did it Arnold, but once the font is installed - it is installed in Windows, so is available to all programs. - you just set the font...
Brett Collings
zkbac
Offline Send Email
Jul 4, 2004
8:44 pm
14759
Hi All: I'm having a bad memory day. Hope someone can help. I am putting a drop down box in a form. I have added the fields that I want the user to choose from...
Dave R.
resorts03226
Offline Send Email
Jul 5, 2004
5:40 am
14760
Dave, It sounds like you forgot to bind the control to a field in it's rowsource property. Neil Squires ... ===== MSDeveloper Add-Ins Library ...
Neil Squires
greaterdesig...
Offline Send Email
Jul 5, 2004
6:32 am
14761
Hi Neil: I "think" I have that set. The "Control source" is set to "AP_TIME" which is the field I want it to update and it DOES update when "drop it down" and ...
Dave R.
resorts03226
Offline Send Email
Jul 5, 2004
12:56 pm
14762
Dave- What's the Row Source of the combo (the SQL if it's a query), the Control Source, and the Bound Column? If the value of the control source matches the...
John Viescas
jlviescas
Offline Send Email
Jul 5, 2004
1:13 pm
14763
Hello All, I am new to Access and I have volunteer to build a membership database for a Finnish Cultural Club. I have the database completed but I am running...
slowandgo@...
roybeals
Offline Send Email
Jul 5, 2004
10:47 pm
14764
Roy- In Access, you can also use + as a concatenation operator, but unlike &, it does propogate nulls. (Null propogation: Any expression containing a null ...
John Viescas
jlviescas
Offline Send Email
Jul 5, 2004
11:13 pm
14765
John, Thanks, that did it. Roy ... From: ms_access@yahoogroups.com Date: 07/05/04 16:14:58 To: ms_access@yahoogroups.com Subject: RE: [ms_access] Labels Roy- ...
SlowandGo
roybeals
Offline Send Email
Jul 5, 2004
11:34 pm
14766
John, I read that it should be there and it is but when I open the new file it only shows the new table and not the CompanyDelete file. I am sure there is an...
L. T. Portella
ltportellar
Offline Send Email
Jul 6, 2004
4:16 am
14767
... The only way it can not be there is if you deleted it. Nothing in the code deleted the table all by itself. Brett ... Outgoing mail is certified Virus...
Brett Collings
zkbac
Offline Send Email
Jul 6, 2004
4:29 am
14768
Hi John and Brett, I got a problem with printing out the info on the 4" wide receipt paper. You see, if i got only 2 rows of info to be printed, but it will...
arnold choo
arnoldcch
Offline Send Email
Jul 6, 2004
4:49 am
14769
Hello, I am new to email applications but understand that I can send an email from an Access database. does anyone have a generic code snipet that I can use? ...
sharrison7@...
shawnyharrison
Offline Send Email
Jul 6, 2004
1:44 pm
14770
I can readily see that the code is NOT the problem but the problem does exist and I simply dont understand why. I will try a few more times and if not...
L. T. Portella
ltportellar
Offline Send Email
Jul 6, 2004
2:09 pm
Messages 14741 - 14770 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