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 TouchToneTommy 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. stuandwil

    supress outputting to dialog box

    Is it possible to not show the dialog box that says outputting page 1 of ---. I am using an on timer event to send a report out as html every so many minutes. The box comes up when the function runs, I don't wish for my users to see this happening. Probably not possible!
  2. stuandwil

    Connecting to user-specified backend database

    you have added the getopenfilename code off that link page also. This is required to bring up the browse file and pick BE.
  3. stuandwil

    can't open fe/be database

    I finally got the linked table manager to run at work and made a third copy of my frontend and placed this on another pc. I set the links with the manager and opened up the database OK. However when i closed it and reopened it says that the microsoft jet etc can not open the db because someone...
  4. stuandwil

    Default field to previous value

    many thanks, I have it working from your example.
  5. stuandwil

    Default field to previous value

    not sure how to implement what you say, I have this but not working as yet. Private Sub Form_AfterInsert() [cboproduct].DefaultValue = cboproduct End Sub
  6. stuandwil

    Default field to previous value

    Is it possible to populate a field with its previous value. A record is added every hour, a product is chosen from a drop down. 98% of the time it stays the same but every now and again the product will change.
  7. stuandwil

    dlookup value to trigger macro

    We have a machine where is is now routine maintenance to change the "suckers" on it every 8 days. I use a query to give me the amount of days since last sucker change. On a form I use the source below to show the result. =DLookUp("downtime","suckers") I use conditional formatting to display...
  8. stuandwil

    closing an inactive form

    Is there a way to close an inactive form without running permissions/security. Basically if a person is not typing in a field, close the form after 5 minutes. If they are typing either wait and time again or close when typing finished. Thanks Stuart
  9. stuandwil

    How to refresh other front ends

    me.requery did the trick, the second FE is more of a look only so it does not matter that the whole thing is refreshed. Thanks
  10. stuandwil

    How to refresh other front ends

    I have a form "Main" which runs from 2 Front Ends which list tasks outstanding. If a record is added from 1 front end what code will refresh so that the number of records in the second front end increments and shows the new addition. The form refreshes itself every minute and this updates the...
  11. stuandwil

    How 2 change the page setup default in access!?(portrait to landscape)

    Check this info out http://www.utteraccess.com/forums/showflat.php?Cat=&Board=85&Number=317683&Forum=,,,,All_Forums,,,,&Words=&Searchpage=3&Limit=25&Main=317618&Search=true&where=&Name=33366&daterange=&newerval=&newertype=&olderval=&oldertype=#Post317683&bodyprev=
  12. stuandwil

    Using a combo box to search form

    The form is specifiaclly for searching for keyword if one is not entered I want the form to close. Maybe not possible. Stuart
  13. stuandwil

    Using a combo box to search form

    I have a button that opens the form which contains the combo with the parameter query. When I click the button I get the parameter query "Enter Keyword", if a word is input the form is opened, combo drops down with the list of problem fields containing the chosen word. If when the parameter...
  14. stuandwil

    Using a combo box to search form

    If a user does not enter any text in the parameter query is there any way to prompt them for a value else cancel the request.
  15. stuandwil

    Using a combo box to search form

    Many thanks, thats it I have messed about with every combination to try and get what you achieved. Got the "" in the wrong places. Cheers much appreciated
  16. stuandwil

    Password Protect a Form

    Try adding this to the open event of your form. Dim strinput As String strinput = InputBox("Please Enter Password") If strinput = "password" Then DoCmd.OpenForm "yourformname", acNormal Else MsgBox "Incorrect Password" DoCmd.Close acForm, "yourformname" Exit Sub End If
  17. stuandwil

    Using a combo box to search form

    I want to be able to search a field called problem for any word written in a combo box. The best I have been able to do is create the combo and run a parameter query that prompts for keyword. However I can only get it to work by adding the * i.e. *fault*, which means the user has to type in the...
  18. stuandwil

    OLE values

    Yes you are correct I have it now, I was trying to put the file name in there rather than the title. Many thanks I think this instruction will do what i need.

Part and Inventory Search

Back
Top