Recent content by rudymadsen

  1. R

    Access to Word

    I have following code in a button: [CODE]Private Sub Kommandoknap33_Click() On Error GoTo errorHandler Dim wordApp As Object ' Erklær variablen til referencen. Set wordApp = CreateObject("word.application") wordApp.Visible = True wordApp.documents.Open...
  2. R

    Bookmarks to export form data

    Print? How do you mean? Try to explain the task.. /Rudy
  3. R

    Bookmarks to export form data

    Another solution Hi Steven I've done it with another code: datafield.SetFocus ' Transfer to Word Bookmark wordApp.documents(1).bookmarks("bookmarkname").range = IIf(IsNull(datafield.Text), "", datafield.Text) Hope you can use it... :cool: /Rudy
  4. R

    Optimize performance

    In this moment it is spilt on the same drive and the same directory...
  5. R

    Optimize performance

    Thanks for the reply.. However, the performance error came suddenly and I don't understand how this could happend. I will try to make all my relations in the particular forms. The database is going to work in a multiuser environment and I have split up my database in a frontend and a...
  6. R

    Optimize performance

    I have a relative small database, which suddenly seems to performe very slowly. When I make an edit in the biggest form, it takes over 30 seconds to save the changes. How can I se, what is wrong - and what do I do to make it right? /Rudy
Back
Top Bottom