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 20516 - 20545 of 21712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20516
I have a form with many text boxes on it. Every time I move from field to field it shakes. any way to remedy this? Thanks much for you help. Cindy....
nycsmiles08
Offline Send Email
Nov 1, 2006
10:15 am
20517
Shakes? how many fields do you have? Does each field has a some action on exit or got focus events? ... From: ms_access@yahoogroups.com...
George Oro
georgeoro
Offline Send Email
Nov 1, 2006
12:32 pm
20518
Ok here's the code: 1) Go to Modules Tab and create a new module and paste the code below. Save and name the module as you like 2) Create a new button on your...
George Oro
georgeoro
Offline Send Email
Nov 1, 2006
1:33 pm
20519
Is there a way I can change the background colour of a button on a form? Thank you in advance. Ilona Adelaide, Australia [Non-text portions of this message...
Ilona Wright
ilonawright
Offline Send Email
Nov 2, 2006
5:12 am
20520
I don't know if this is strange or Im just missing something only. Couple times I encountered these but just now got a chance to pay attention: 1) While...
George Oro
georgeoro
Offline Send Email
Nov 2, 2006
6:17 am
20521
Hi Ilona, Check this http://www.lebans.com/cmdbutton.htm hth, George ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On Behalf Of Ilona...
George Oro
georgeoro
Offline Send Email
Nov 2, 2006
10:38 am
20522
Sorry: Out Of Topic The innocent victims of Internet child abuse cannot speak for themselves. But you can. With your help, we can eradicate this evil trade. We...
Arsenius
artsdio
Offline Send Email
Nov 3, 2006
1:26 am
20523
Thank you very much George. This is quite complicated for my very limited knowledge of Access Basic, but I will give it a go. Thanks again Ilona Adelaide,...
Ilona Wright
ilonawright
Offline Send Email
Nov 4, 2006
3:20 am
20524
All, I am using a barcode scanner to input book data into Access. Using the barcode, I compute the ISBN including the check digit. But, when the barcode is...
d1ckroot
Offline Send Email
Nov 5, 2006
7:30 pm
20525
Not sure if this will work in VBA.net but most probably. Paste this code to a new module, basically this is the replacement of the Replace built-in function: ...
George Oro
georgeoro
Offline Send Email
Nov 6, 2006
5:49 am
20526
George, Thanks for the reply. Your solution is very good. It is somewhat more general purpose than mine. I wasn't very clear in my question. What I really...
d1ckroot
Offline Send Email
Nov 6, 2006
4:24 pm
20527
Is there a command I can put in a form Code that makes the form maximized everytime it loads? Thanks for nay help you can give. Cindy...
nycsmiles08
Offline Send Email
Nov 6, 2006
4:35 pm
20528
Cindy try this in the OnLoad event docmd.maximize Jim nycsmiles08 <nycsmiles08@...> wrote: Is there a command I can put in a form Code that makes the...
Jim Wagner
luvmymelody
Offline Send Email
Nov 6, 2006
5:33 pm
20529
I need a form that will filter by category (and also be able to by Keyword, but that may be for a later post). I'm well comfortable enough doing basic table...
Mo
send2mo
Offline Send Email
Nov 6, 2006
10:31 pm
20530
Hi George, I don't mean to be argumentative, but I have a question: I am using Microsoft Office Access 2003 on Windows XP Professional 5.1.2600 Service Pack 2....
Ilona Wright
ilonawright
Offline Send Email
Nov 7, 2006
1:27 am
20531
Hi Ilona, I believe in all version it says like that. Changing the background color is almost applicable to all controls but not in the command buttons. ...
George Oro
georgeoro
Offline Send Email
Nov 7, 2006
6:11 am
20532
Thank you George. Ilona Adelaide, Australia...
Ilona Wright
ilonawright
Offline Send Email
Nov 7, 2006
11:37 pm
20533
I'm in a bit of a quandry here. I built this form containing 250 or so fields all from one data source. The person I'm working for wanted to add another 100...
rlee_at_channing
rlee_at_chan...
Offline Send Email
Nov 8, 2006
12:28 am
20534
Try using a sub-form. Guy Harley www.youramigo.com _____ From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com] On Behalf Of rlee_at_channing Sent:...
guy@...
guyharleyaus
Offline Send Email
Nov 8, 2006
1:15 am
20535
Ryan, You can gain maximum flexibility by not binding the form to any data source. Then via VBA you can issue any SQL commands you want. Alterantively you...
d1ckroot
Offline Send Email
Nov 8, 2006
4:51 am
20536
I know what the person you works for wants carries a lot of weight, but 350 fields on one form seems really busy to me. I would think the user would get lost...
ruralguy99
Offline Send Email
Nov 8, 2006
9:25 am
20537
The number of fields on the form is an issue. Evem though you are "only" using Access proper database design is still necessary. The table that the form is...
d1ckroot
Offline Send Email
Nov 8, 2006
3:16 pm
20538
If the logic between the yes/no check boxes is "or" the following query might point you in the right direction - - SELECT tblBookData.ISBN, ...
d1ckroot
Offline Send Email
Nov 8, 2006
6:08 pm
20539
Hi. I have a form that us used for data entry to a table. How do I get the form to show the next blank record every time it is opened? I beleive it is...
jwsommers
Offline Send Email
Nov 8, 2006
8:21 pm
20540
Jeff, I assumed you're using bound forms. Put this code on Open or On Load property/event DoCmd.GoToRecord , , acNewRec '// If you want to focus to specific...
George Oro
georgeoro
Offline Send Email
Nov 9, 2006
6:05 am
20541
Jeff, I assumed you're using bound forms. Put this code on Open or On Load property/event DoCmd.GoToRecord , , acNewRec '// If you want to focus to specific...
George Oro
georgeoro
Offline Send Email
Nov 9, 2006
6:05 am
20542
Thanks George, that did it for me. Jeff ... Load ... On ... I get...
jwsommers
Offline Send Email
Nov 10, 2006
2:38 am
20543
Hello All, I am working on a process that will append records to one of two tables. I believe I will need to have update and append queries to do this....
avmedgnv
Offline Send Email
Nov 10, 2006
9:11 am
20544
using ADO in a MS ACCESS 2002 database. I need to add a record - similliar to "AddNew" in DAO. Many Thanks...
lobosawm
Offline Send Email
Nov 10, 2006
9:11 am
20545
I need to output (DEBUG.PRINT) the {name} and {row source} of every combo box on every form in my Access97 DB (around 30 forms). Any ideas would be much...
scottfisheruk
Offline Send Email
Nov 10, 2006
11:18 am
Messages 20516 - 20545 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