Search results

  1. KeithG

    quick SQL question

    to check for a table you need to checkt he tabledef collection for the table.
  2. KeithG

    help me please with this code?

    try this strStartSql2 = "WHERE (((qryVisitListVBA2.supervisor) Like ' * " & [Forms]![frmSupervisor]![Search3] & " * '));"
  3. KeithG

    Trouble with query DSum

    sound like you need to group on division and acct
  4. KeithG

    Selecting multiple long-filenames

    You need to set a reference to the Microsoft Scripting Runtime
  5. KeithG

    Selecting multiple long-filenames

    Here is a link to info regarding the FileSystemObject. http://www.techbookreport.com/tutorials/fso1.html
  6. KeithG

    Selecting multiple long-filenames

    Also you can use the FileSystemObject to retrieve all files in a folder.
  7. KeithG

    Selecting multiple long-filenames

    You will need to build a custom form with a listbox in which the user can select the files.
  8. KeithG

    Selecting multiple long-filenames

    I don't see what your question is?
  9. KeithG

    code willl not stop running

    Why can't you open up the VBE when the form is is design view?
  10. KeithG

    How do you Declare a Variable as a Query

    What error are you getting? Maybe try putting the query name in brackets [query]
  11. KeithG

    Afffecting Directories and their Files with VBA

    Check out the FileSysteObject class. You have much more flexiablilty creating and working with directories using this class.
  12. KeithG

    Password Protected Table

    You can use user level security to create user groups to limit access
  13. KeithG

    Early Warning on Date Field

    What do you mean by warning system? What do you want to happen? Maybe a message to pop up when the user open the db?
  14. KeithG

    Simple Query Help

    It sounds to me that you have a flaw in your db design. But not sure because I havn't seen your table structure. Are you saying "on" and "fd" are in the same field? You could use "ON" or "FD" in the criteria
  15. KeithG

    tab driven forms

    It depends, we don't really have enought info. But with the info we have I would guess you should have more than one table. Read up on database normalization.
  16. KeithG

    Quick Button Question

    Let say textboxA contaims fieldA data and textb contains fieldb if textboxA="Regulatory" then docmd.openform "FormA" elseif textboxA="non-Regulatory" then docmd.openform "formB End if
  17. KeithG

    Sample Survey?

    there is one posted below. I have not looked at it though. http://www.access-programmers.co.uk/forums/showthread.php?t=151480&highlight=survey+sample
  18. KeithG

    Combo box VB help on form plz....

    try usercombo.value
  19. KeithG

    Oulook displayalerts

    You can use the Redemption .dll
  20. KeithG

    Combo box VB help on form plz....

    Just use the combobox name instead of the text box name. For the security... goto Tools securtiy and you should see some options. Unless you are using Access 2007. For some reason MS disabled User level security in 2007.
Top Bottom