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 IamaSherpa 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. sbauerle

    Move message to public folder agent

    Hello tsuji, thanks for your help. It works just fine. regards Stefan
  2. sbauerle

    Move message to public folder agent

    Hello, I would like to set up an agent that moves messages from one public folder to another (one level down). My problem is to get the target folder identified. The script allways moves the message to the parent folder. Thanks for any help. Here is my code: <SCRIPT RunAt=Server...
  3. sbauerle

    Export Data from Custom Outlook Form to Access (DAO)?

    A statement like RS(&quot;Field1&quot;)=Item.UserProperties.Find(&quot;Field1&quot;).Value needs to used for each form field you want to export to Access. In this example the field name in both, Access and Outlook form, is &quot;Field1&quot;. But it could be different. I am not using the...
  4. sbauerle

    Export Data from Custom Outlook Form to Access (DAO)?

    Hi Chrisy, I found a way. Here is my script: Sub AddDatabaseRecord DbOpenTable = 1 On Error Resume Next Set Dbe = Application.CreateObject(&quot;DAO.DBEngine.36&quot;) Set MyDB = Dbe.Workspaces(0).OpenDatabase (&quot;C:\Archiv.mdb&quot;) Set RS = MyDB.OpenRecordset(&quot;Archiv&quot...
  5. sbauerle

    Agent for deleting files in public folder

    I also checked the online help on that. I thought this feature is only for replicated files. Thanks a lot, that will definetely do what I am looking for.
  6. sbauerle

    Agent for deleting files in public folder

    guess I missed that point. Can you tell me how?
  7. sbauerle

    Agent for deleting files in public folder

    Hello, I am new in server scripting. Can anybody help with this one? I would like to set up an agent to delete old files (outlook forms) in a public folder. I would like to check the received date. If older then 3 months, the file should be deleted. How should the script look like? thanks for...
  8. sbauerle

    Transfer data from Outlook2000 custom form to custom Excel sheet

    Thanks a lot. That helped me a lot. It works now.
  9. sbauerle

    Key combination ALT+Print in VBscript

    Thanks for the link, but what I found there is that the PRTSC key can not be sent to an application.
  10. sbauerle

    Key combination ALT+Print in VBscript

    Hello, can anybody tell me how to execute the ALT+Print key combination using VBscript. thanks for any help Stefan
  11. sbauerle

    Transfer data from Outlook2000 custom form to custom Excel sheet

    Hello, because of printing issues of custom Outlook forms, I would like to transfer the data from the Outlook2000 form to an Excel sheet using VBscript. Something like: Sub Transfer_Click '*** open custom Excel sheet '*** copy/transfer data from Outlook to Excel End Sub Any help would be...
  12. sbauerle

    Security message in Outlook2000 on item.send

    We are using Outlook 2000 SR-1 (9.0.0.4527)
  13. sbauerle

    Security message in Outlook2000 on item.send

    Hello, we are using custom outlook forms with VBscript for several workflows. Within these workflows we are creating mails. When executing the command item.send the security guard pops up to ask if you really want to send this message. Unfortunately some users always click on NO. Is there any...
  14. sbauerle

    VBScript to import data from Outlook Addressbook

    Hello, I am trying to import data from the Outlook Addressbook into a custom form in Outlook 2000 using VB Script. So far I was able to put the name into field1. But I can not read out the data from the other fields. See the listing below I am very thankful for any help Stefan Sub...
  15. sbauerle

    Export Data from Custom Outlook Form to Access (DAO)?

    I have implemented a workflow using custom outlook forms. For archiving purpose i would like to export the data (~150 fields) to an Access database using VBScript. How can i connect to the database/recordset? And how do i add a record? Plattform is NT4 and Office 2000.
  16. sbauerle

    Export Data from Custom Outlook Form to Access (DAO)?

    I have implemented a workflow using custom outlook forms. For archiving purpose i would like to export the data (~150 fields) to an Access database using VBScript. How can i connect to the database/recordset? And how do i add a record? Plattform is NT4 and Off2000.
  17. sbauerle

    Read only mode for Outlook 2000 forms

    Hello, I am trying to set up a workflow using Outlook 2000 forms with VBScript. Now I have the problem, that there is nothing like in Word or Excel, to make sure that an existing form in a public folder can be opened only once with write rights. Is there any way to use VBScript (I guess MS is...

Part and Inventory Search

Back
Top