BUG: SQL SELECT Brings Up Dialog Twice Erroneously (133003)
The information in this article applies to:
- Microsoft Visual FoxPro for Windows 3.0
- Microsoft Visual FoxPro for Windows 3.0b
- Microsoft Visual FoxPro for Windows 5.0
- Microsoft Visual FoxPro for Windows 5.0a
- Microsoft Visual FoxPro for Windows 6.0
- Microsoft FoxPro for Windows 2.6a
- Microsoft FoxPro for Macintosh 2.6a
- Microsoft FoxPro for MS-DOS 2.6a
This article was previously published under Q133003 SYMPTOMS
An SQL SELECT command, using LOCFILE() or GETFILE() to find the source
table or using PUTFILE() to specify the destination table, may bring
up the dialog box for LOCFILE(), GETFILE(), or PUTFILE() twice.
WORKAROUND
Store the return value of the LOCFILE(), GETFILE(), or PUTFILE() function
in a variable, and pass this variable to the SELECT command as a named
expression (that is, in parentheses) as in this example:
cFilename=LOCFILE('','DBF','Select a Table')
SELECT * FROM (cFilename)
cFilename=PUTFILE('Table','','DBF')
SELECT * FROM <tablename> INTO TABLE (cFilename)
STATUS
Microsoft has confirmed this to be a problem 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.
Modification Type: | Major | Last Reviewed: | 5/7/2003 |
---|
Keywords: | kbBug KB133003 |
---|
|