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

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

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

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