C
Cap'n Dave via AccessMonster.com
I received this info from Programming Data Acess Pages (Microsoft Acess 2000
Technical Articles)
http://msdn.microsoft.com/library/en-us/dnacc2k/html/programdap.asp?frame=true
.. It is not working using Access 2003! Can anyone suggest how to do this?
Self-Selecting Fields
When the user tabs into a field in a form, the contents of the field are
selected. If you'd like this same behavior in your data access pages, you can
add the following script to each text field (substitute the actual field name
for Field below).
<SCRIPT for=Field event=onfocus language=vbscript>
Field.select
</SCRIPT>
Thanks for your help.
Technical Articles)
http://msdn.microsoft.com/library/en-us/dnacc2k/html/programdap.asp?frame=true
.. It is not working using Access 2003! Can anyone suggest how to do this?
Self-Selecting Fields
When the user tabs into a field in a form, the contents of the field are
selected. If you'd like this same behavior in your data access pages, you can
add the following script to each text field (substitute the actual field name
for Field below).
<SCRIPT for=Field event=onfocus language=vbscript>
Field.select
</SCRIPT>
Thanks for your help.