Article ID: 150469 - Last Review: June 24, 2004 - Revision: 3.0

DOC: Code Sample Error in Documentation for RowTop Method

System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
This article was previously published under Q150469
Expand all | Collapse all

SUMMARY

This article corrects a documentation error in the code sample for the RowTop Method described in the "Visual Basic 4.0 Language Reference," and online Help. When you execute the sample code, an "Expected End of Statement" error occurs and the following line of code is highlighted:
   CellTop = DataGrid1.RowTop RowValue + Y - DY / 2
				
This error occurs because the RowValue argument for the RowTop method is not enclosed in parentheses.

To correct this error, enclose the RowValue argument in parentheses as in the following example:
   CellTop = DataGrid1.RowTop(RowValue) + Y - DY / 2
				

STATUS

This documentation error was corrected in Visual Studio 97 Service Pack 3.

APPLIES TO
  • Microsoft Visual Basic 4.0 Standard Edition
  • Microsoft Visual Basic 4.0 Professional Edition
  • Microsoft Visual Basic 4.0 Professional Edition
  • Microsoft Visual Basic 4.0 16-bit Enterprise Edition
  • Microsoft Visual Basic 4.0 32-Bit Enterprise Edition
Keywords: 
kbbug kbfix KB150469