|
Views a Customer 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 (pCustm->SeekBySysNum (smLast, 0))
pCustm->View ();
|
|
|
C# |
|
// View the last inserted record
if (oCustm.SeekBySysNum (eSeekMode.smLast, 0))
oCustm.View ();
|
|
|
VBS |
|
' View the last inserted record
If oCustm.SeekBySysNum(smLast, 0) Then
Call oCustm.View()
End If
|
|
|
VB.NET |
|
' View the last inserted record
If oCustm.SeekBySysNum(eSeekMode.smLast, 0) Then
oCustm.View()
End If
|
|