Yes, I know it
is hard to believe that there would be bugs or issues with VB6 already. Here
is our initial list of them.
| Bug Name |
Bug Description |
Link | Reported By |
| Font
in Data View window changes to match the SQL Editor |
Steps
to reproduce the problem:
- Set your font for the code to a different size.
- Open the SQL Editor from the Data View window.
The font in the SQL Editor is nicely enlarged to the code size you specified.
- Look at the Data View window. It also made itself the new size, making
it difficult to read the contents if you made the font large.
|
None |
Deborah
Kurata |
| VERY
MINOR: Pop up menu for the Related Documents provides a Properties option,
that does not do anything. Also, resource files have a Save As option, but
it does not do anything. |
Steps
to reproduce the problem:
- Right click on a file in the Related Documents.
- Select Properties. Nothing happens
- Right click on a resource file.
- Select Save As. Nothing happens.
For most other Related Documents, Save As is gray.
|
None |
Deborah
Kurata |
| MINOR:
In the Customize dialog box to customize the menus, the Description and
"?" buttons don't do anything |
Steps
to reproduce the problem:
- Right click on the menu.
- Select Customize.
- Click on the "?" button, it does nothing.
- Click on the Commands tab.
- Click on the Description button, it does nothing.
|
None |
Ron
Schwarz |
| Form
Layout window does not display the opened windows |
If
the Form Layout window is closed when no forms exist and you exit VB, the
Form Layout window won't display any forms when the Form Layout window is
reopened upon subsequent use. Steps to reproduce the problem:
- Enter
VB.
- Remove the default form.
- Close the Form Layout window.
- Exit VB.
- Enter VB.
- View Form Layout window. No forms appear in the Form Layout window.
- Exit VB again.
- Enter VB again.
- Forms now appear in the Form Layout window.
|
None |
Deborah
Kurata |
| Properties
of the Err object are not checked at compile time. |
Steps to reproduce the problem in the VB6 IDE:
- Add a list of code: Debug.Print Err.Desription (notice the misspelling)
- Compile the application. You will not receive a syntax error
- Run the application. You will get a "Method or data member not
found error when the line of code is executed.
|
None |
Deborah
Kurata |
| Bug Name |
Bug Description |
Link | Reported By |
| The
Access OLE-DB driver does not work the first time when used with fields
tied to a Data Environment |
Steps
to reproduce the problem:
- Use the Data Environment (DE) and connect to a database using the Access
OLE-DB driver.
- Build a hierarchical recordset.
- Drag the parent hierarchical recordset from the DE to a form. Appropriate
controls will appear.
- Run the project - the fields are not populated.
- Change the DE to use the ODBC driver and run again, it works!
- Change the DE back to the Access OLE-DB driver. Now that works too!
|
None |
Deborah
Kurata |
| Cannot
bind to a date field if there are no records in the recordset. |
You
can bind a date control on a form by setting the DataSource to a recordset
and the DataField to a date field. However, if the recordset is empty it
generates and error and will not perform the binding. NOTE: This behavior
was only test using Access. |
None |
Deborah
Kurata |
| MSChrt20.OCX
ignores the first row of a recordset. |
MSChrt20.OCX
throws out the first row of a Recordset. For instance, if you have a Recordset
with a calendar years worth of monthly data, the chart shows only
February - December.
The work-around
is to explicitly move the recordset's record point, e.g. execute a MoveFirst.
|
None |
Roger
Jennings |
| MSChrt20.OCX
does not correct react to null values. |
If
the Recordset acting as the bound graphs DataSource contains a null
value, which is common for Jet crosstab queries, no data points appear after
the null is encountered. You have to fix the Recordset, which means saving
it, then opening it from the saved file, in order to make it updateable.
Replace the nulls with zeroes, then Set Chart.DataSource = Recordset. |
None |
Roger
Jennings |
Revised: July 16, 2004.