Project::SeekByFirm (Interface: Project)
 
Seeks a Project by its firm.
 
VARIANT_BOOL SeekByFirm (
    enum eSeekMode eSeekMode,
    enum eFirmType eFirmType,
    LONG lFrmNum,
    LONG lFrmSubNum,
    LONG lNumber
)
 
Key information
This method uses key number 3 (See SwapKey).
This is a unique key.
 
Key segment information
Segment NameTypeOrderCollation
pFrmTypeBYTEAscending-
pFrmNumLONG (unsigned)Ascending-
pFrmSubNumLONG (unsigned)Ascending-
pNumberLONG (unsigned)Ascending-
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
eFirmType
[in] A value of the 'eFirmType' enumeration.
lFrmNum
[in] The number of the firm that the project you want to seek is assigned to.
lFrmSubNum
[in] The subnumber of the firm that the project you want to seek is assigned to.
lNumber
[in] The number of the project you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreateProject
 
Samples
 
C++
 
// Seek all projects for customer with number 12/0
eFirmType eFT = ftCustomer;
DWORD dwFrmNum = 12, dwFrmSubNum = 0;
pProject->SeekByFirm (smGreater, eFT, dwFrmNum, dwFrmSubNum, 0);
while (pProject->GetDBStatus () == 0 && pProject->pFrmType.bVal == eFT && pProject->pFrmNum.lVal == dwFrmNum && pProject->pFrmSubNum.lVal == dwFrmSubNum)
{
    // Process record data
    
    pProject->GetNext ();
}

C#
 
// Seek all projects for customer with number 12/0
eFirmType eFT = eFirmType.ftCustomer;
int iFrmNum = 12, iFrmSubNum = 0;
oProject.SeekByFirm (eSeekMode.smGreater, eFT, iFrmNum, iFrmSubNum, 0);
while (oProject.GetDBStatus () == 0 && (eFirmType)Enum.ToObject(typeof(eFirmType), oProject.pFrmType) == eFT && (int)oProject.pFrmNum == iFrmNum && (int)oProject.pFrmSubNum == iFrmSubNum)
{
    // Process record data
    
    oProject.GetNext ();
}

VBS
 
' Seek all projects for customer with number 12/0
Dim eFT
Dim dwFrmNum, dwFrmSubNum
eFT = ftCustomer
dwFrmNum = 12
dwFrmSubNum = 0
Call oProject.SeekByFirm(smGreater, eFT, dwFrmNum, dwFrmSubNum, 0)
While oProject.GetDBStatus() = 0 And oProject.pFrmType = eFT And oProject.pFrmNum = dwFrmNum And oProject.pFrmSubNum = dwFrmSubNum
    ' Process record data

    Call oProject.GetNext()
Wend

VB.NET
 
' Seek all projects for customer with number 12/0
Dim eFT As eFirmType
Dim ulFrmNum, ulFrmSubNum As ULong
eFT = eFirmType.ftCustomer
ulFrmNum = 12
ulFrmSubNum = 0
oProject.SeekByFirm(eSeekMode.smGreater, eFT, ulFrmNum, ulFrmSubNum, 0)
While oProject.GetDBStatus() = 0 And oProject.pFrmType = eFT And oProject.pFrmNum = ulFrmNum And oProject.pFrmSubNum = ulFrmSubNum
    ' Process record data

    oProject.GetNext()
End While