Search results

  1. T

    How to make hyperlinks in a word document using access vba on windows server 2008

    Many many thanks, this indeed solved my problem! (This is really a great forum!)
  2. T

    How to make hyperlinks in a word document using access vba on windows server 2008

    Dear I generate a Word-document with information from my Access database. I also add hypertext with hyperlinks to the Word-document. This works fine on Windows 7 with MS Access2010 using ActiveDocument.Hyperlinks.Add. Now I run the same code on Windows Server 2008, but I don't see any...
  3. T

    Scheduled task on windows server

    What worked for me, was splitting everything in two steps : I made a batch file which calls the vbs-script. In windows 7, this split is not required : you can run the vbs-script directly in the task scheduler.
  4. T

    Scheduled task on windows server

    Hello I have a vbs-script that opens my access database db.mdb and runs the module "Export": dim accessApp set accessApp = createObject("Access.Application") accessApp.OpenCurrentDataBase("D:\Data\db.mdb") accessApp.Run "Export" accessApp.Quit set accessApp = nothing This works fine as a...
  5. T

    run as administrator windows 7/Access 2010

    I need to execute following command in Access VBA 2010 : Set WordApp = New Word.Application This worked fine in Access VBA 2007, but now, I am receiving the error : 'The requested operation requires elevation' which means that I should run this command as administrator. Is there any way to...
  6. T

    Help with FindFirst

    I have two recordsets and I want to check if data from one recordset appears in the other. My code is : Dim db As Database Dim rs As DAO.Recordset Dim rs2 As DAO.Recordset Set db = CurrentDb() Set rs = db.OpenRecordset("Articles") Set rs2 = db.OpenRecordset("Specifications", dbOpenDynaset)...
  7. T

    update field in form

    Dear I made a form where I would like to show or hide a field depending on the value of another field, without having to click anywhere. More specific : I have a table with for each record a field with a language code and fields with dutch and french titles. Depending on the language code...
Top Bottom