Search results

  1. D

    Code to allow saving of Outlook attachment to local drive?

    I found this incredibly helpful code that allows a user to drag and drop an Outlook file directly into Access and store a copy on the specified drive. http://www.tek-tips.com/viewthread.cfm?qid=1346884 I'm trying to figure out if there is a way for a user to drag an individual ATTACHMENT from...
  2. D

    How to query Windows Search 4.0??

    I've installed Windows Search Service (Windows Search 4.0) on SBS Server 2008. I am trying to locate a script that would access the index and allow for full-text searching. Essentially, I would like to be able to type in a word or string into a searchbox, and have MS Access query the...
  3. D

    Alternative to mapnetworkdrive?

    As my other post indicates, I am having problems with the mapnetworkdrive command for a variety of reasons. Is there any alternative VB script I could use to map a network drive from within Access? Any insight would sure be appreciated!!
  4. D

    Error when mapping network drive with button on form

    This is driving me crazy. I have a button that maps a network drive. Here is the code: Dim objNetwork Dim fs As Object Set objNetwork = CreateObject("WScript.Network") Set fs = CreateObject("Scripting.FileSystemObject") objNetwork.MapNetworkDrive "I:", "\\10.100.1.10" The first time I click on...
  5. D

    Error Message when Mapping Network Drive

    This is driving me crazy. I have a button that maps a network drive. Here is the code: Dim objNetwork Dim fs As Object Set objNetwork = CreateObject("WScript.Network") Set fs = CreateObject("Scripting.FileSystemObject") objNetwork.MapNetworkDrive "I:", "\\10.100.1.10" The first time I click on...
  6. D

    How to Copy Files to a Folder?

    My previous post on this may have been overly complicated, so here is the simplified version. I have a table that contains hyperlinks to various files. I want to write a simple script that will take each hyperlink and then copy the actual file into a pre-specified folder. If anyone could...
  7. D

    HELP!! Script to send multiple attachments via email

    Help! For the life of me I cannot figure out what I'm doing wrong. I have a Microsoft Access query that lists the full directory path for a number of files. I tried to write a script that will create a new email message in Outlook that attaches each of the files listed in the query. The user...
Back
Top Bottom