| |
| Seeks the Firm card. |
| |
 |
VARIANT_BOOL Seek () |
|
| |
| Return value |
| True if the firm record was found, otherwise false. |
| |
| See Also |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Position on the one and only firm record (so the most recent data is retrieved)
if (pFirm->Seek())
// Process most recent firm data
|
|
 |
C# |
| |
// Position on the one and only firm record (so the most recent data is retrieved)
if (oFirm.Seek())
// Process most recent firm data
|
|
 |
VBS |
| |
' Position on the one and only firm record (so the most recent data is retrieved)
If oFirm.Seek() Then
// Process most recent firm data
End If
|
|
 |
VB.NET |
| |
' Position on the one and only firm record (so the most recent data is retrieved)
If oFirm.Seek() Then
// Process most recent firm data
End If
|
|