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 ...
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...
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...
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 ...
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...
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...
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...
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...
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...
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...
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 ... ...
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...
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...
what are the conditions when updating the records? could u explain further pls... ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On ...
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...
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...
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...
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...
My pleasure.... George ... From: ms_access@yahoogroups.com [mailto:ms_access@yahoogroups.com]On Behalf Of kingfisher2xx4 Sent: Tuesday, October 03, 2006 7:03...
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...
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...
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. ...
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...
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...
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...