home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / ARQS_ZIP / BV0700.ZIP / BV0700.TXT
Encoding:
Text File  |  1992-11-09  |  3.0 KB  |  51 lines

  1. ======================================================================
  2.   Microsoft(R) Product Support Services Application Note (Text File)
  3.                 BV0700: TROUBLESHOOTING COMMON PROBLEMS
  4. ======================================================================
  5.                                                   Revision Date: 11/92
  6.                                                       No Disk Included
  7.  
  8. The following information applies to Microsoft Visual Basic(TM) for
  9. Windows(TM) versions 1.0 and 2.0.
  10.  
  11.  --------------------------------------------------------------------
  12. | INFORMATION PROVIDED IN THIS DOCUMENT AND ANY SOFTWARE THAT MAY    |
  13. | ACCOMPANY THIS DOCUMENT (collectively referred to as an            |
  14. | Application Note) IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY      |
  15. | KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO    |
  16. | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A     |
  17. | PARTICULAR PURPOSE. The user assumes the entire risk as to the     |
  18. | accuracy and the use of this Application Note. This Application    |
  19. | Note may be copied and distributed subject to the following        |
  20. | conditions: 1) All text must be copied without modification and    |
  21. | all pages must be included; 2) If software is included, all files  |
  22. | on the disk(s) must be copied without modification [the MS-DOS(R)  |
  23. | utility DISKCOPY is appropriate for this purpose]; 3) All          |
  24. | components of this Application Note must be distributed together;  |
  25. | and 4) This Application Note may not be distributed for profit.    |
  26. |                                                                    |
  27. | Copyright 1992 Microsoft Corporation. All Rights Reserved.         |
  28. | Microsoft and MS-DOS are registered trademarks and Visual Basic    |
  29. | and Windows are trademarks of Microsoft Corporation.               |
  30.  --------------------------------------------------------------------
  31.  
  32. 1. Q. When I attempt to load a Visual Basic version 1.0
  33.       application into version 2.0 of Microsoft Visual Basic for
  34.       Windows, I receive the error message "Form name is a class name."
  35.       What is causing this error?
  36.  
  37.    A. With version 2.0 of Visual Basic, you cannot have a form name
  38.       that is identical to a form, control, or object class name. For
  39.       example, invalid form names include "form", "list box", "text
  40.       box", "printer", "app", "database", and "dynaset". The form name
  41.       also cannot be the same as the class name of any custom control
  42.       that appears in the project. To work around this error, you must
  43.       load the form into Visual Basic version 1.0 and change the form
  44.       name. If you have already installed version 2.0 over version 1.0,
  45.       you must copy the VB.EXE file from your version 1.0 distribution
  46.       disks. To do this, you can either run the version 1.0 Setup
  47.       program again or use the Windows EXPAND utility to copy the
  48.       VB.EXE file from the original distribution disks.
  49.  
  50.  
  51.