Contact::View (Interface: Contact)
 
Views a Contact 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
CreateContact
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pContact->SeekBySysNum (smLast, 0))
    pContact->View ();

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

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

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