Kofax DM API Instrukcja Użytkownika Strona 97

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 528
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 96
DM API OBJECTS 77
PCDNetworkInfo
End If
End If
cbGetMembers.Enabled = False
End Sub
Private Sub lstDomains_Click()
sDomainName = lstDomains.Text
lstGroups.Clear
'Fill the UserList with Users in this list.
nResult = oGroupInfo.GetGroupList( _
"%NI_NT", sDomainName)
nNumRows = 0
'Get the rowcount.
If nResult = 0 Then
nNumRows = oGroupInfo.GetRowCount()
End If
'Display user list in the lstGroups ListBox.
If nNumRows = 0 Then
MsgBox "User information for this domain “ _
“is not available to you."
Else
For i = 1 To nNumRows
nResult = oGroupInfo.NextRow()
lstGroups.AddItem (oGroupInfo.GetValue())
Next i
'Pre-select the first item in the list.
lstGroups.ListIndex = 0
sGroupName = lstGroups.Text
cbGetMembers.Enabled = True
End If
Przeglądanie stron 96
1 2 ... 92 93 94 95 96 97 98 99 100 101 102 ... 527 528

Komentarze do niniejszej Instrukcji

Brak uwag