Visual Basic  Glossary

 
BOF

Beginning of File property. This is normally used in database programming to check whether the beginning of file is reached. Example:

If Not Adodata1.Recordset.BOF   Then

        Adodata1.Recordset.MovePrevious

End If

Boolean A variable type that can be set to true or false      example:  Dim  an X as boolean 
BorderColor  A property that set the border color of the controls
ByVal

The keyword that enables a Function to pass on the argement by value rather than by reference.

Example:         

               Function  Grade(ByVal x as single, y as double)      

   
   

 

 

  [Back to VB Glossary]