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 Chris Miller 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: *

  • Users: DHSBW
  • Order by date
  1. DHSBW

    Drop Table function

    Thanks Ed. Got it to work.
  2. DHSBW

    Drop Table function

    Thanks for the reply. Now I'm getting a "syntax error in drop table or drop index" message.
  3. DHSBW

    Drop Table function

    Hi: The function below deletes a specific table with the user supplying the table name, and deletes it if it does. But the function returns an error "table not found" if the table name has a space in it. How can I get it to accept the space? Thanks for the help in advance. Function...
  4. DHSBW

    Repeating the same procedure over fixed time interval

    Thanks for the reply. Do you have an example of how I would run an insert statement in the backend database from a front end form? I have absolutely no experience in this. I always thought that this was not possible.
  5. DHSBW

    Repeating the same procedure over fixed time interval

    My Access database is divided into a front end with all the forms and backend with all the underlying tables. How can I get the backend database to perform a repetitive function, in this case, search for the existence of a specific table every 30 seconds, and if it exists, insert the data into...
  6. DHSBW

    Creating a dynamic query def

    Got it. Thanks.
  7. DHSBW

    Creating a dynamic query def

    I'm getting a runtime error 3061: "Too few parameters" when I try to create a dynamic query def based on two parameters. Thanks for your help in advance. S1 = "Select [User Name],[Password], [Administrator] from [User Accounts] WHERE (([User Name]= [Forms]![Login]!UID) And ([Password] =...
  8. DHSBW

    disabling all controls on a form save one

    Hi: Thanks for responding. I found an example from another site. Sorry I didn't get back sooner. Posted the code below just for the hell of it. Private Sub Form_Open(Cancel As Integer) Dim ctl As Control For Each ctl In Me.Controls Select Case ctl.ControlType Case acTextBox If ctl.Name Like...
  9. DHSBW

    disabling all controls on a form save one

    I want to disable all controls on a form open event execept of the textbox Employee ID. Is there some loop procedure I can use to accomplish that?
  10. DHSBW

    Populating text control from Combo Box using DLookup

    Thanks. Got it to work.
  11. DHSBW

    Populating text control from Combo Box using DLookup

    Hi: Here is the following simple one code I have in the "On Change" event of combo12 combo box: Private Sub Combo12_Change() [Forms]![Orders Form]!Text25 = DLookup("[Unit Price]", "Products", "[Product Description]= '" & [Forms]![Orders Form]!Combo12 & "'") End Sub I want to use the selected...

Part and Inventory Search

Back
Top