Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sometimes the code below encounters a runtime error (462) at the line
"Word.Application.Visible." That error says: "The remote server machine does not exist or is not available. What might cause this error? Alan Function StartWord() As Boolean StartWord = False ' Try to open an existing instance of Word On Error Resume Next Set Word = GetObject(, "Word.Application") On Error GoTo 0 ' If Word is not started, start a new instance If Word Is Nothing Then Set Word = GetObject("", "Word.Application") End If Word.Application.Visible = True StartWord = True End Function |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reference & update destin. cells on 1st machine from source workbook on 2nd machine. | Excel Discussion (Misc queries) | |||
Macro doesn't run on new machine | Excel Programming | |||
RTD server on remote machine. | Excel Programming | |||
462 The remote server machine does not exist? | Excel Programming |