I created a desktop shotcut by placing the following code in my .exe :
oWsh = CREATEOBJECT("wscript.shell"
cDeskPath = oWsh.SpecialFolders("desktop"
oShort = oWsh.CreateShortcut(cDeskpath+"\PCPrint Plus.LNK"
oShort.TargetPath = "c:\Ianera\ianera.EXE"
oShort.Save
It places the shortcut, but when I run my app using the shorcut it puts foxuser.dbf and foxuser.fpt on my desktop too. ????? How can I get rid of them still have the shorcut.
oWsh = CREATEOBJECT("wscript.shell"
cDeskPath = oWsh.SpecialFolders("desktop"
oShort = oWsh.CreateShortcut(cDeskpath+"\PCPrint Plus.LNK"
oShort.TargetPath = "c:\Ianera\ianera.EXE"
oShort.Save
It places the shortcut, but when I run my app using the shorcut it puts foxuser.dbf and foxuser.fpt on my desktop too. ????? How can I get rid of them still have the shorcut.