PdcClockLine.PersonelName
Declaration
PersonelName as String
Description
Returns the personel name
Notes
This property returns the Personel name of the clock line's personel number.
Code example
This code example returns the personel name of clockline with ID "456".
Sub sGetClockLinePersonelName
dim objClockLine
dim intID
intID = "456"
set objClockLine = pdc.ProductRegistration.ClockLines.Open(intID)
if IsValid(objClockLine) then
msgbox objClockLine.PersonelName
end if
set objClockLine = nothing
End Sub
Availability
Available since july 2008 (from version 3.8).