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