Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. danielemc2

    How can I link a SQL database email address field to exchange?

    We have an Exchange 2000 server and a custom app on a SQL server. The custom app has an email address field in one of the tables. I want the users to be able to use that field when sending emial via outlook. The data in the SQL table is dynamic so just importing the data won't work. How can I...
  2. danielemc2

    how do I set a report's Record Source property in code

    Thanks, that works, but how can I reference my form's public variable that I need to set it to?
  3. danielemc2

    how do I set a report's Record Source property in code

    I need to assign a query to a report at run time. I've got the name of the report so I can OpenReport it. Ive tried to set the query at runtime with. dim query2run,report2prt query2run = "Name of some query from existing queries" report2prt = "Name of some report from...
  4. danielemc2

    need to extract WHERE clause from access query in code

    I am creating a list of queries for the user to select from. Dim obj As AccessObject Dim dbs As Object For Each obj In dbs.AllQueries QueriesList.RowSource = QueriesList.RowSource + obj.Name + ";" End If Once they have chosen a query I need to get the sql from it...

Part and Inventory Search

Back
Top