BUG:Text & Value Properties of DBGrid Column Show Empty StringLast reviewed: March 18, 1997Article ID: Q139970 |
4.00
WINDOWS
kbprg kbbuglist
The information in this article applies to: - Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, for Windows, version 4.0
SYMPTOMSWhen using the DBGrid control, attempting to access the Text or Value properties of columns that are not visible on the screen returns an empty string regardless of the actual data in the column.
WORKAROUNDTo work around this problem, reference the data directly from the data control instead of from the grid control. For example, instead of using
Print DBGrid1.Columns("Telephone").Textto print out the contents of the current record's Telephone field, use
Print Data1.Recordset("Telephone")This code prints the Telephone field regardless of whether or not the Telephone column is visible on the screen.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to reproduce problem
|
Additional reference words: 4.00 vb4win vb4all buglist4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |