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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 20406 - 20435 of 21714   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20406
Hi all, Is there a way when selecting an item in a combo box, that the first item that pops up when the first characters are typed can be jumped past. Like a ...
Keith Browning
Keith_Browning
Offline Send Email
Oct 2, 2006
7:53 am
20407
hi browning You may use two combo box for the data entry purpose both combo should be bound to the same data field use a query in the first combo showing the...
irshad_ncs
Offline Send Email
Oct 2, 2006
8:24 am
20408
George, I was reading in a .net book the other day and the topic of screen resolution came up. The consensus of the book is that people who have monitors that...
Squires, Neil
greaterdesig...
Offline Send Email
Oct 2, 2006
6:42 pm
20409
Wow,, Thanks can't wait to try it. keith ... From: "irshad_ncs" <irshad_ncs@...> To: <ms_access@yahoogroups.com> Sent: Monday, October 02, 2006 9:21 PM ...
Keith Browning
Keith_Browning
Offline Send Email
Oct 2, 2006
7:11 pm
20410
Hi again, I have made another combo box and they track each other. (Neat) But... I can't get my head adding the right function to the query. I have tried in...
Keith Browning
Keith_Browning
Offline Send Email
Oct 2, 2006
8:54 pm
20411
I have a form and 2 subforms connected by "UniqueID" a text field w/ 12 spaces. They are set up for data entry. Sometimes, when the 'UniqueID" field is...
Linda Moon
moondance30d...
Offline Send Email
Oct 2, 2006
11:21 pm
20412
Thanks Neil... I found something yesterday in my archive to Hide the Application Window. So what it does it resize the access application window to zero and I...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
7:06 am
20413
Seems I managed how put the access window (1024x768) in the center of the screen if the user used higher than 1024x768. What i just did, I get the current user...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
7:39 am
20414
I have used access (v. 2003) for a number of years an have used structured progamming on a regular basis. I am somewhat familiar with programming objects. I...
kingfisher2xx4
Offline Send Email
Oct 3, 2006
11:48 am
20415
How can edit the value in my ListView? After a populate the list I want to have an option that I can change directly the value of any column. I ticked the...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
11:51 am
20416
r u talking about using VBA or Access just BE and VB is ur FE? ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On Behalf Of...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
12:06 pm
20417
I am using Access, and I guess I need to go to acromyn school because I have no idea what you are using BE and FE to refer to. ... On ... with ... want ... ...
kingfisher2xx4
Offline Send Email
Oct 3, 2006
12:26 pm
20418
Sorry... BE = Back End or ur database and FE = Front End or ur application so basically u want to add a new record and assign a value to ur date field using...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
12:36 pm
20419
Thanks for the explanation. Access is my FE and BE to create a simple time recording application. Yes, I am adding a range of dates to the table. Using...
kingfisher2xx4
Offline Send Email
Oct 3, 2006
12:53 pm
20420
what are the conditions when updating the records? could u explain further pls... ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On ...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
1:11 pm
20421
I found a solution, using a form and query though I am sure there is a more eloquent programatic implementation. The user selects a time period end date from a...
kingfisher2xx4
Offline Send Email
Oct 3, 2006
1:30 pm
20422
try this: dim cn as adodb.connection dim dtmDate as date dim strINSERT as string for i = 0 to 13 dtmDate=me.DW_PeriodEnd_combo - i strINSERT="INSERT INTO...
George Oro
georgeoro
Offline Send Email
Oct 3, 2006
2:01 pm
20423
Just don't try to control the users experience "too much", cause they will always find a reason to be upset if you take any of their options away :) Neil...
Squires, Neil
greaterdesig...
Offline Send Email
Oct 3, 2006
2:38 pm
20424
That is great, thanks for the jumpstart George all your help. I had to change a couple things, here is the updated code. Your suggestion gave me exactly what...
kingfisher2xx4
Offline Send Email
Oct 3, 2006
3:04 pm
20425
If you stick in the middle, then what about those users who have two monitors? Won't the middle be half in one monitor and half in the other? Dawn...
Dawn Crosier
dlc110161
Offline Send Email
Oct 3, 2006
4:31 pm
20426
Never tried 2 monitors and besides the application will open in the middle on the startup then after user can drag here and there. George ... From:...
George Oro
georgeoro
Offline Send Email
Oct 4, 2006
6:17 am
20427
My pleasure.... George ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On Behalf Of kingfisher2xx4 Sent: Tuesday, October 03, 2006 7:03...
George Oro
georgeoro
Offline Send Email
Oct 4, 2006
6:26 am
20428
true then exit sub ;-) George ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On Behalf Of Squires, Neil Sent: Tuesday, October 03, 2006...
George Oro
georgeoro
Offline Send Email
Oct 4, 2006
6:32 am
20429
Is there a way to mask or format both US and International formats in the same field? Thanks for your help....
sandniel
Offline Send Email
Oct 4, 2006
2:07 pm
20430
Since the two masks are different, if the control is capable of displaying either mask A or mask B, how will the control determine which format to apply? Neil...
Squires, Neil
greaterdesig...
Offline Send Email
Oct 4, 2006
2:36 pm
20431
you could use a check box to indicate that it is an international tel#, and use the after update property of the check box to set the mask of the other field. ...
eileen1309
Offline Send Email
Oct 4, 2006
3:02 pm
20432
are there any records in the subforms that have a blank unique id? That may be your issue Thanks Eileen ... w/ ... form, ... comes ... causes...
eileen1309
Offline Send Email
Oct 4, 2006
3:17 pm
20433
I would like to print a bar code of an alpha-numberic field for our part numbers. The field can contain spaces. I want to create a bar code that will read...
Joanne Yargeau
jyargeau2001
Offline Send Email
Oct 4, 2006
6:08 pm
20434
A lot of ways to remove or trim the spaces and this normaly I do: 1) Paste this code to a new module: =========== code start ========== Option Compare Database...
George Oro
georgeoro
Offline Send Email
Oct 5, 2006
8:42 am
20435
Hello Group Member In excel I used fomula which include medium bracket before = sign. for example {=sum(.....)} but now i don't remember. Can any body tell...
Sarfraz Shaikh
safee_76
Offline Send Email
Oct 5, 2006
10:54 am
Messages 20406 - 20435 of 21714   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