Search results

  1. B

    images in continous forms

    maybe this can help http://www.vbaexpress.com/forum/showthread.php?t=8009
  2. B

    Complete search form

    Take a look at this example. I use it in all my DB http://www.access-programmers.co.uk/forums/showthread.php?t=100246
  3. B

    Code to print images on report

    Hi All, I am having trouble printing my images on a report. The report is linked to a query. The problem is that its only printing the last image on record. Here is my code. Thanks for the help. Private Sub Report_Activate() Dim pathx As String Dim Loc As String Dim nm As String pathx =...
  4. B

    I need to search multiple fields

    Try here: http://www.access-programmers.co.uk/forums/showthread.php?t=100246
  5. B

    Issue with mousehook

    Try using an Install program like "InstallConstruct 6.8". It packs your DB into an .exe file and you can also have it install other files in other locations. Its a trial version and works great when distibuting your DB. Bones
  6. B

    Filecopy

    Are you looking to backup your database? If so I have a code that I use. Let me know. Bones
  7. B

    Text box that works like word?

    Thx all, but G' nailed this one: http://www.access-programmers.co.uk/forums/showthread.php?t=105903
  8. B

    Text box that works like word?

    Sorry G' is was not on purpose....
  9. B

    Text box that works like word?

    Hi All, I have a text box (memo field) that the user enters a description. This is sometimes more then one paragraph. In a text box you cant hit enter and goto the next line (or paragraph). I would like to to this? can it be done? Thanks
  10. B

    Text box that works like word?

    Hi All, I have a text box (memo field) that the user enters a description. This is sometimes more then one paragraph. In a text box you cant hit enter and goto the next line (or paragraph). I would like to to this? can it be done? Thanks
  11. B

    Copying Folder and its Sub-directories

    This is what I use to back up a folder I store files in: "images" is the folder I am backing up. It is located in the same folder as the database. The code copies the folder and names it "External_File Backup-" plus the date in the "Backup" folder. Dim fso Dim sfol As String, dfol As String Dim...
  12. B

    good MS ACESS VBA Books or Sites

    This site is really good...also try VBA for dummies.
  13. B

    good MS ACESS VBA Books or Sites

    This site is really good...also try VBA for dummies.
  14. B

    Export Yes/No Value to Word Checkbox

    Glad to help. I was working the same issue on my side at the same time, funny how that works.
  15. B

    Export Yes/No Value to Word Checkbox

    let me know....
  16. B

    Export Yes/No Value to Word Checkbox

    Ok, i think I got it. Using the original code in VBA should work. In your work template make your checkboxes from the FORMS toolbar. It will name each bookmark as check1, check2 etc... let me know how it goes.
  17. B

    Export Yes/No Value to Word Checkbox

    ok...I think I found the solution. Make your checkboxes from the FORMS toolbar. After you insert it, check the name of the bookmark. It will start with Check1, check2 etc... Let me know how it goes.
  18. B

    Export Yes/No Value to Word Checkbox

    ok, I tried to insert another checkbox to my template and I am recieving the same error. This leads me to believe the original code is correct and the template is not correct. I will let you know in a few minutes....
  19. B

    Export Yes/No Value to Word Checkbox

    not sure if this will work, try m_objWord.Document.FormFields("chkUrgent").C heckBox.Value = True
  20. B

    Export Yes/No Value to Word Checkbox

    I am not 100% but this line uses "m_objWord.ActiveDocument.FormFields("chkUrgent").C heckBox.Value = True" uses activedocument and I thinkyou code uses a new document.... I am not sure if that is the issue
Back
Top Bottom