Vertragsverwaltung-Klassenbibliothek  

clsApplikation.Save_CheckedData -Methode

[Visual Basic]
Public Sub Save_CheckedData( _ 
ByRef clb As CheckedListBox, _ 
ByVal typ As Integer
)

Parameter

clb
typ

Quellcode

[Visual Basic]
        Public Sub Save_CheckedData(ByRef clb As CheckedListBox, ByVal typ As Integer) 
Dim i As Integer 
Dim oc As CheckedListBox.ObjectCollection = clb.Items 
For i = 0 To oc.Count - 1 
Update_Data(oc.Item(i).item(0), clb.GetItemChecked(i), typ) 
Next 
End Sub

Forderungen

Plattformen: Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Siehe auch

clsApplikation