$FUNCNAME$
  DBGOBOTTOM()
$CATEGORY$
  DATABASE
$SUMMARY$
   Move to the last logical record
$LANG_RU$
        .
$SYNTAX$
     DBGOBOTTOM() --> NIL
$LANG_RU$
     DBGOBOTTOM() --> NIL
$RETURNS$
     DBGOBOTTOM() always returns NIL.
$LANG_RU$
     DBGOBOTTOM()   NIL.
$DESCRIPTION$
     DBGOBOTTOM() moves to the last logical record in the current work area.

     DBGOBOTTOM() performs the same function as the standard GO BOTTOM
     command.  For more information, refer to the GO command.
$LANG_RU$
     DBGOBOTTOM()       
       .

     DBGOBOTTOM()    ,     GO
     BOTTOM.       GO.
$EXAMPLES$
       The following example uses DBGOBOTTOM() to position the record
	pointer on the last logical record:

	cLast := "Winston"
	DBUSEAREA( .T., "DBFNTX", "Sales", "Sales", .T. )
	DBSETINDEX( "LASTNAME" )
	//
	Sales->( DBGOBOTTOM() )
	IF ( Sales->Last == "Winston" )
	   IF RLOCK()
	      Sales->( DBDELETE() )
	      ? "Record deleted: ", Sales->( DELETED() )
	   ELSE
	      ? "Unable to lock record..."
	   ENDIF
	END
$SEEALSO$
  BOF(),DBGOTOP(),DBSEEK(),DBSKIP(),EOF()
$END$
