|
Browses the file for a Commercial Sales Agreement. |
|
|
LONG Browse ( VARIANT_BOOL bFromCurrPos ) |
|
|
Parameters | bFromCurrPos | [in] When this parameter is set to true the browse will use the current position of the file and the key that was set by the previous SeekBy-method. If the parameter is false the browse will be positioned at the beginning of the file and the key will be the last one that was manually selected in the browse. | | Return value |
A LONG containing the system number of the selected record, 0 if no record was selected. | | Remarks |
| This method can only be used if user interface is allowed (parameter bWithUserInterface is set to true in the Logon method), because a record can only be selected using the browse dialog. |
|
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
long lSysNum;
if (pComAs->SeekByCustm (smEqual, caDiscount, VARIANT_FALSE, ckNum, 25, "", akNum, "ART_001", "", 100.0))
// Browse using the key 'CAS_CST' (customer) and positioned on the record found by SeekByCustm
lSysNum = pComAs->Browse (VARIANT_TRUE);
else
// Browse using the last key that was manually selected and positioned at the beginning of the file
lSysNum = pComAs->Browse (VARIANT_FALSE);
|
|
|
C# |
|
int iSysNum;
if (oComAs.SeekByCustm (eSeekMode.smEqual, eComAgType.caDiscount, false, eCstKind.ckNum, 25, "", eArtKind.akNum, "ART_001", "", 100.0))
// Browse using the key 'CAS_CST' (customer) and positioned on the record found by SeekByCustm
iSysNum = oComAs.Browse (true);
else
// Browse using the last key that was manually selected and positioned at the beginning of the file
iSysNum = oComAs.Browse (false);
|
|
|
VBS |
|
Dim lSysNum
If oComAs.SeekByCustm(smEqual, caDiscount, False, ckNum, 25, "", akNum, "ART_001", "", 100.0) Then
' Browse using the key 'CAS_CST' (customer) and positioned on the record found by SeekByCustm
lSysNum = oComAs.Browse(True)
Else
' Browse using the last key that was manually selected and positioned at the beginning of the file
lSysNum = oComAs.Browse(False)
End If
|
|
|
VB.NET |
|
Dim lSysNum As Long
If oComAs.SeekByCustm(eSeekMode.smEqual, eComAgType.caDiscount, False, eCstKind.ckNum, 25, "", eArtKind.akNum, "ART_001", "", 100.0) Then
' Browse using the key 'CAS_CST' (customer) and positioned on the record found by SeekByCustm
lSysNum = oComAs.Browse(True)
Else
' Browse using the last key that was manually selected and positioned at the beginning of the file
lSysNum = oComAs.Browse(False)
End If
|
|