PstCd::View (Interface: PstCd)
 
Views a Postal Code 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
CreatePstCd
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pPstCd->SeekBySysNum (smLast, 0))
    pPstCd->View ();

C#
 
// View the last inserted record
if (oPstCd.SeekBySysNum (eSeekMode.smLast, 0))
    oPstCd.View ();

VBS
 
' View the last inserted record
If oPstCd.SeekBySysNum(smLast, 0) Then
    Call oPstCd.View()
End If

VB.NET
 
' View the last inserted record
If oPstCd.SeekBySysNum(eSeekMode.smLast, 0) Then
    oPstCd.View()
End If