473,378 Members | 1,207 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Lock Autofill box after first use

74
I have a problem, i created a "CALL LOG" for people at my office and i have a autofill box that fills in the time when they create the next "LOG" however if they go back to that log and click on that box or enter through it, it will again auto fill. I need to stop it from auto filling a second time. I have been trying to get it to work in VB but no worky, any thoughts?
Mar 16 '07 #1
3 1289
MMcCarthy
14,534 Expert Mod 8TB
I have a problem, i created a "CALL LOG" for people at my office and i have a autofill box that fills in the time when they create the next "LOG" however if they go back to that log and click on that box or enter through it, it will again auto fill. I need to stop it from auto filling a second time. I have been trying to get it to work in VB but no worky, any thoughts?
If you used the fields default value to 'autofill' the textbox then it will only update when a new record is added. How have you set this?

Mary
Mar 16 '07 #2
Denburt
1,356 Expert 1GB
This can be done many ways What I would do is add code to the on current event for the form.


If not isnull(Me!myControl) and len(Me!myControl) >0 then
Me!mycontrol.enabled = false
else
Me!mycontrol.enabled = true
end if

Honestly though if it autofills you could just disable it hide it etc. and they could never touch it. Most of my applications I build has this to track the user entering data I use date and the UserName of whoever is logged in mine is usually hidden and if there are any questions about a record, viola I know who to hunt.
Mar 16 '07 #3
Hutch
74
I had it in VBA coding so i moved it to the autofill, thanks
Mar 21 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Chris Sharman | last post by:
I'd like to design my pages to work cooperatively with browser autofill features. I've loked around, but can't find any good documentation on supported/unsupported field names...
1
by: shortbackandsides.no | last post by:
I'm having a lot of difficulty trying to persuade the Google toolbar autofill to act consistently, for example ======================= <html><head> <title>autofill test</title> </head><body>...
0
by: David Portabella | last post by:
Hello, I am a doing a survey about Autofill Web Forms softwares. Usually, they all collect information of the user once during the set-up phase (user knowledge base). Then, when the user...
1
by: Nick J | last post by:
Hi, I remember at one point access would autofill a text box when filtering by form, Like for example as I would type it would come up with matching records, similar to AutoComplete in Internet...
1
by: mike | last post by:
Hi All I have a combo box that sources from a field and enables me to autofill if I have the properties as such: Column count: 2 Bound Column: 1 Column Width: 0 Auto expand: yes
2
by: Andre Ranieri | last post by:
I'm retouching our corporate web site that, among other things, allows customers to log in and pay their invoices online. I noticed that on the checkout page, the credit card number textbox...
4
by: HTS | last post by:
I have written a membership database application (PHP + mySQL) and need to prevent autofill from filling in fields in a member record edit form. I know I can turn off autoFill in my browsers, I...
1
by: Rissoman | last post by:
Hello, I have an issue were I have a zipcode textbox in an atlas ajax updatepanel. When you tab out of the zip textbox and the shipping is calculated. I know this works perfect! Then a user...
0
by: Randy | last post by:
Hi, I have some comboboxes that are created dynamically at run time based on user actions. I found a procedure on a message board to autofill the combobox text from the dataview that the...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.