Article ID: 110128
Article Last Modified on 10/15/2003
x='MAC HD:FOXPRO:DATABASE' USE &xThis code is exactly equivalent to the following USE command:
USE MAC HD:FOXPRO:DATABASEHowever, this USE command isn't valid because FoxPro thinks the filename is MAC and doesn't understand what HD:FOXPRO:DATABASE is supposed to be.
x="'MAC HD:FOXPRO:DATABASE'"
Note the double quotation marks and single quotation marks. You can also
use "" or ''.
-or-
x='MAC HD:FOXPRO:DATABASE'
USE (x)Additional query words: VFoxMac FoxMac file name marco errmsg err msg
Keywords: kberrmsg KB110128