Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms Programming / May 2007

Tip: Looking for answers? Try searching our database.

auto text

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Tyler - 11 May 2007 21:22 GMT
I've created a database that will contain information about
properties.  One of the fields requires the entry of a road name.  I
was wondering if there was a way to code the field so that it would
A)  recognize previous entries for roads so that as the person typed
it would auto fill and B) be all capitals?
Damon Heron - 11 May 2007 22:00 GMT
Just use a combo box instead of a textbox and set the control source to the
street field and the rowsource to the street name (click the "..." next to
row source and build a simple query to show only the street names in the
combobox.  As the user types it will go to any previous names.

For uppercase, in the afterupdate event of the combo-

Private Sub Combo1_AfterUpdate()
Me.Combo1 = UCase(Combo1)
End Sub

HTH
Damon

> I've created a database that will contain information about
> properties.  One of the fields requires the entry of a road name.  I
> was wondering if there was a way to code the field so that it would
> A)  recognize previous entries for roads so that as the person typed
> it would auto fill and B) be all capitals?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.