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