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

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

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

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