Question : Thread pool member on TCPIP ?

I'm noticing this on one of my server log.

Database Server      Thread pool member on TCPIP

I'm talking about 100's of these just appearing out of nowhere.

What does this mean ?  This would happen regularly if it was apart of normal system operation, right ?

Answer : Thread pool member on TCPIP ?

Hmm. Perhaps Access doesn't have the Office reference by default, so we might have to use the Word dialogue. That makes it even simpler..
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
Sub OpenSelectedDoc()
    Dim wdApp As Object 'Word.Application
    Dim fd As Object 'Word.Dialog
    
    On Error Resume Next
        Set wdApp = GetObject(, "Word.Application")
    On Error GoTo 0
    If wdApp Is Nothing Then
        Set wdApp = CreateObject("Word.Application")
    End If
    wdApp.Visible = True

    Set fd = wdApp.Dialogs(80) 'wdDialogFileOpen
    fd.Name = CurrentProject.Path & "\"
    fd.Show

End Sub
Random Solutions  
 
programming4us programming4us