473,396 Members | 1,810 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,396 software developers and data experts.

autofill on a form

I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.

I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.

I'm sure this is simple, I just can't seem to get it straight in my
head.

Jul 10 '07 #1
8 2350
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>

TblZipcode
ZipcodeID
ZipState
ZipCode

TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID

TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>

Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get salesman
for any zipcode from TblSalesmanAssignment.

Your form needs a query named QryMyForm for the recordsource. The query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo. The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]

You need a combobox to enter ZipcodeID. For the rowsource of the combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.

Set the bound column property of the combobox to 1, column count to 2 and
column width to 0;1".

Put the following code in the AfterUpdate event of the combobox:
Me.Requery


<te**@conwaycorp.netwrote in message
news:11**********************@n2g2000hse.googlegro ups.com...
>I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.

I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.

I'm sure this is simple, I just can't seem to get it straight in my
head.

Jul 10 '07 #2
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>

TblZipcode
ZipcodeID
ZipState
ZipCode

TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID

TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>

Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get salesman
for any zipcode from TblSalesmanAssignment.

Your form needs a query named QryMyForm for the recordsource. The query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo. The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]

You need a combobox to enter ZipcodeID. For the rowsource of the combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.

Set the bound column property of the combobox to 1, column count to 2 and
column width to 0;1".

Put the following code in the AfterUpdate event of the combobox:
Me.Requery

<t...@conwaycorp.netwrote in message

news:11**********************@n2g2000hse.googlegro ups.com...
I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in my
head.- Hide quoted text -

- Show quoted text -
Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).
Jul 10 '07 #3
<<if I base the form on a query, I can't update it. >>

That's not true! When you select Zipcode in the combobox and enter dasta in
the LeadInfo fields, it all gets saved to TblLeadInfo.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
re******@pcdatasheet.com

<te**@conwaycorp.netwrote in message
news:11**********************@p39g2000hse.googlegr oups.com...
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
>Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>

TblZipcode
ZipcodeID
ZipState
ZipCode

TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID

TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>

Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get
salesman
for any zipcode from TblSalesmanAssignment.

Your form needs a query named QryMyForm for the recordsource. The query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo. The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]

You need a combobox to enter ZipcodeID. For the rowsource of the combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.

Set the bound column property of the combobox to 1, column count to 2 and
column width to 0;1".

Put the following code in the AfterUpdate event of the combobox:
Me.Requery

<t...@conwaycorp.netwrote in message

news:11**********************@n2g2000hse.googlegr oups.com...
>I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in my
head.- Hide quoted text -

- Show quoted text -

Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).


Jul 10 '07 #4
On Jul 10, 2:44 pm, "Steve" <s...@private.emailaddresswrote:
<<if I base the form on a query, I can't update it. >>

That's not true! When you select Zipcode in the combobox and enter dasta in
the LeadInfo fields, it all gets saved to TblLeadInfo.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

<t...@conwaycorp.netwrote in message

news:11**********************@p39g2000hse.googlegr oups.com...
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>
TblZipcode
ZipcodeID
ZipState
ZipCode
TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID
TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>
Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get
salesman
for any zipcode from TblSalesmanAssignment.
Your form needs a query named QryMyForm for the recordsource. The query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo. The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
You need a combobox to enter ZipcodeID. For the rowsource of the combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.
Set the bound column property of the combobox to 1, column count to 2 and
column width to 0;1".
Put the following code in the AfterUpdate event of the combobox:
Me.Requery
<t...@conwaycorp.netwrote in message
>news:11**********************@n2g2000hse.googlegr oups.com...
I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in my
head.- Hide quoted text -
- Show quoted text -
Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).- Hide quoted text -

- Show quoted text -
I created a the query as instructed:
Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]

and based my form on that query. When I try to enter data it doesn't
allow it, now error msg, just 'ding' and i can't type in or select
from the combo box.. any ideas? Note, a subform that is on this form..
I can enter data there
Jul 10 '07 #5
What is this about a subform? There was no previous mentin of a subform.
Nevertheless, the form should still work. Open your query in design view
then click the red exclamation in the menu to run the query. Is there a
blank line at the bottom to enter a new recprd? Is the far right navigation
button with the asterisk enabled? This will tell you if the query is
updateable. If you answered No to the questions, there is something wrong in
your query.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
re******@pcdatasheet.com

<te**@conwaycorp.netwrote in message
news:11**********************@r34g2000hsd.googlegr oups.com...
On Jul 10, 2:44 pm, "Steve" <s...@private.emailaddresswrote:
><<if I base the form on a query, I can't update it. >>

That's not true! When you select Zipcode in the combobox and enter dasta
in
the LeadInfo fields, it all gets saved to TblLeadInfo.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

<t...@conwaycorp.netwrote in message

news:11**********************@p39g2000hse.googleg roups.com...
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>
>TblZipcode
ZipcodeID
ZipState
ZipCode
>TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID
>TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>
>Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get
salesman
for any zipcode from TblSalesmanAssignment.
>Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
>You need a combobox to enter ZipcodeID. For the rowsource of the
combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.
>Set the bound column property of the combobox to 1, column count to 2
and
column width to 0;1".
>Put the following code in the AfterUpdate event of the combobox:
Me.Requery
><t...@conwaycorp.netwrote in message
>>news:11**********************@n2g2000hse.googleg roups.com...
>I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in my
head.- Hide quoted text -
>- Show quoted text -
Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).- Hide quoted text -

- Show quoted text -

I created a the query as instructed:
Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]

and based my form on that query. When I try to enter data it doesn't
allow it, now error msg, just 'ding' and i can't type in or select
from the combo box.. any ideas? Note, a subform that is on this form..
I can enter data there


Jul 10 '07 #6
On Jul 10, 3:35 pm, "Steve" <s...@private.emailaddresswrote:
What is this about a subform? There was no previous mentin of a subform.
Nevertheless, the form should still work. Open your query in design view
then click the red exclamation in the menu to run the query. Is there a
blank line at the bottom to enter a new recprd? Is the far right navigation
button with the asterisk enabled? This will tell you if the query is
updateable. If you answered No to the questions, there is something wrong in
your query.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

<t...@conwaycorp.netwrote in message

news:11**********************@r34g2000hsd.googlegr oups.com...
On Jul 10, 2:44 pm, "Steve" <s...@private.emailaddresswrote:
<<if I base the form on a query, I can't update it. >>
That's not true! When you select Zipcode in the combobox and enter dasta
in
the LeadInfo fields, it all gets saved to TblLeadInfo.
PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com
<t...@conwaycorp.netwrote in message
>news:11**********************@p39g2000hse.googleg roups.com...
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>
TblZipcode
ZipcodeID
ZipState
ZipCode
TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID
TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>
Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get
salesman
for any zipcode from TblSalesmanAssignment.
Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
You need a combobox to enter ZipcodeID. For the rowsource of the
combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.
Set the bound column property of the combobox to 1, column count to 2
and
column width to 0;1".
Put the following code in the AfterUpdate event of the combobox:
Me.Requery
<t...@conwaycorp.netwrote in message
>news:11**********************@n2g2000hse.googlegr oups.com...
I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in my
head.- Hide quoted text -
- Show quoted text -
Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).- Hide quoted text -
- Show quoted text -
I created a the query as instructed:
Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
and based my form on that query. When I try to enter data it doesn't
allow it, now error msg, just 'ding' and i can't type in or select
from the combo box.. any ideas? Note, a subform that is on this form..
I can enter data there- Hide quoted text -

- Show quoted text -
No blank record, new record button is disabled.. so you got it,
something is wrong with the query, I'll see if I can figure out what
it is.

I didn't mention the subform because it did't seem relevant, with or
without the subform, the form should act the same.

Thanks.. and don't go away! :-)

Jul 10 '07 #7
If you don't find the problem with the query, post the SQL of the query.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
re******@pcdatasheet.com


<te**@conwaycorp.netwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
On Jul 10, 3:35 pm, "Steve" <s...@private.emailaddresswrote:
>What is this about a subform? There was no previous mentin of a subform.
Nevertheless, the form should still work. Open your query in design view
then click the red exclamation in the menu to run the query. Is there a
blank line at the bottom to enter a new recprd? Is the far right
navigation
button with the asterisk enabled? This will tell you if the query is
updateable. If you answered No to the questions, there is something wrong
in
your query.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

<t...@conwaycorp.netwrote in message

news:11**********************@r34g2000hsd.googleg roups.com...
On Jul 10, 2:44 pm, "Steve" <s...@private.emailaddresswrote:
<<if I base the form on a query, I can't update it. >>
>That's not true! When you select Zipcode in the combobox and enter
dasta
in
the LeadInfo fields, it all gets saved to TblLeadInfo.
>PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com
><t...@conwaycorp.netwrote in message
>>news:11**********************@p39g2000hse.google groups.com...
On Jul 10, 1:18 pm, "Steve" <s...@private.emailaddresswrote:
Your tables are not correct. The following are recommended:
TblSalesman
SalesmanID
FirstName
LastName
<<other salesman contact fields>>
>TblZipcode
ZipcodeID
ZipState
ZipCode
>TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID
>TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>
>Note that with the above tables, you do not enter the salesman into
TblLeadInfo. In any form or report displaying LeadInfo, you can get
salesman
for any zipcode from TblSalesmanAssignment.
>Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and
TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
>You need a combobox to enter ZipcodeID. For the rowsource of the
combobox
you need a query based on
TblZipcode and TblSalesmanAssignment. The fields need to be:
ZipcodeID
ZipCode
Sort ascending on Zipcode.
>Set the bound column property of the combobox to 1, column count to
2
and
column width to 0;1".
>Put the following code in the AfterUpdate event of the combobox:
Me.Requery
><t...@conwaycorp.netwrote in message
>>news:11**********************@n2g2000hse.googleg roups.com...
>I have:
table 1 - tblLeadInfo which includes a salesman ID field
table 2 - tbllkpSalesman with all zips in the state and a
Salesman
assigned to that area.
I have a form based on table #1 When I enter the zip code in the
form, I'd like the Salesman ID field in tblLeadInfo to fill in
accordingly and also show the salesman name on the form.
I'm sure this is simple, I just can't seem to get it straight in
my
head.- Hide quoted text -
>- Show quoted text -
Thanks, that was of some help. But, if I base the form on a query, I
can't update it. I'll be using this form to enter information on
leads, preferably selecting a salesman from the drop down based on
zip
code, then having a command button to email all the entered data to
him (i have the email part done, along with a Dial command if I want
to call him).- Hide quoted text -
>- Show quoted text -
I created a the query as instructed:
Your form needs a query named QryMyForm for the recordsource. The
query
needs to include TblSalesman, TblSalesmanAssignment and TblLeadInfo.
The
fields need to be:
ZipcodeID (TblLeadInfo)
<<Your LeadInfo fields> (TblLeadInfo)
Salesman:[FirstName] & " " & [LastName]
and based my form on that query. When I try to enter data it doesn't
allow it, now error msg, just 'ding' and i can't type in or select
from the combo box.. any ideas? Note, a subform that is on this form..
I can enter data there- Hide quoted text -

- Show quoted text -

No blank record, new record button is disabled.. so you got it,
something is wrong with the query, I'll see if I can figure out what
it is.

I didn't mention the subform because it did't seem relevant, with or
without the subform, the form should act the same.

Thanks.. and don't go away! :-)

Jul 10 '07 #8
Ok.. here's everything I have
tblSalesman
SalesmanID
FirstName
LastName
email
phone
tblZipCode
ZipcodeID
ZipState
ZipCode
ZipCounty
TblSalesmanAssignment
SalesmanAssignmentID
ZipcodeID
SalesmanID
TblLeadInfo
LeadInfoID
ZipcodeID
<<Your LeadInfo fields>>
qryLeadfrm includes
tblSalesman; tblSalesmanAssignment and TblLeadInfo
fields:
ZipcodeID from from tblLeadInfo) & other info fields
Salesman:[FirstName] & " " & [LastName]

I linked tblLeadInfo to tblZipcode ZipCodeID (??) and linked
tblSalesman to tblsalesmanassignment by Salesman ID

frmLeadInfo is based on above query and includes

combobox to enter ZipcodeID - rowsource of the combobox
qry based on TblZipcode and TblSalesmanAssignment
fields:
ZipcodeID
ZipCode
Sort ascending on Zipcode.

bound column property of the combobox to 1, column count to 2 and
column width to 1;0"

code in the AfterUpdate event of the combobox:
Me.Requery

all that is done and in place.. but it doesn't work, the form shows
only records already enter (2 test records) and when I selected a
different zip, the fields stay the same, here is the sql of the qry
that the form is based on.

SELECT tblLeadInfo.ZipCodeID, tblLeadInfo.leadsource,
tblLeadInfo.BZleadnumber, tblSalesman.[Full Name], tblSalesman.ID
FROM tblSalesman INNER JOIN (tblLeadInfo INNER JOIN
tblSalesmanAssignment ON tblLeadInfo.ZipCodeID =
tblSalesmanAssignment.ZipCodeID) ON tblSalesman.ID =
tblSalesmanAssignment.SMID;
thanks again...

Jul 12 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

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...
0
by: Ray Holtz | last post by:
Is it possible to autofill a field based on what is entered into another field in a form? My form has an employee field, and department field. In an Items Table, I have fields FldEmployee, and...
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...
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...
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: berlich | last post by:
Can I use visual basic.net to access the DOM in a web page so that I can autofill the text boxes? If so, can you point me in the right direction as to where to begin? I need to fill in a lengthy...
2
rsmccli
by: rsmccli | last post by:
Access 2002 Hi, I have a number of comboboxes/textboxes in the header of a form that the user selects values from. These comboboxes/textboxes correspond to controls in a datasheet view subform....
1
by: Nik Coughlin | last post by:
I'm doing some ajax validation on form fields, using the form change event. If I click Autofill in the Google Toolbar, fields are filled out but the change event is never fired, so the validation...
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.