|
Views a Serial Number card. |
|
|
void View () |
|
|
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 viewed using the dialog. |
|
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// View the last inserted record
if (pArtSrl->SeekBySysNum (smLast, 0))
pArtSrl->View ();
|
|
|
C# |
|
// View the last inserted record
if (oArtSrl.SeekBySysNum (eSeekMode.smLast, 0))
oArtSrl.View ();
|
|
|
VBS |
|
' View the last inserted record
If oArtSrl.SeekBySysNum(smLast, 0) Then
Call oArtSrl.View()
End If
|
|
|
VB.NET |
|
' View the last inserted record
If oArtSrl.SeekBySysNum(eSeekMode.smLast, 0) Then
oArtSrl.View()
End If
|
|