Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Burn data to CD from within FoxPro

Status
Not open for further replies.

prangster

MIS
Sep 14, 1999
18
US
Is there a way to issue the commands to burn files to a CD without having to exit FoxPro?
 
Anything is possible. I'm sure it'd depend on the installed software and/or OS.

You can probably write a wrapper for XP's API.

Brian
 
Mike you are ICONIC... but does this download really cost $300 ?

Foxy
 
Mike you are ICONIC

I'm not sure what that means...

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Some additional ideas (from Ed Leafe's Profox mailing list at ... these are snippets from recent threads - I have not tried either of these techniques:

1) If they are on XP/2003 you can get a free ActiveX control here ( which wraps the built-in XP CD burning functionality.

2) On XP, the following code block can be used to stage files for burning to CD. I don't have code that actually initiates the burn. Anyone have any ideas? (My limited understanding of this topic is that the shell.application object can be controlled with OLE verbs?)

cFile = getfile()
local oShell, oFolder
oShell = createobject("shell.application")
oFolder = oShell.BrowseForFolder(0,"Select CDR to write to",0,0)
oFolder.CopyHere(cFile)

...

Good luck,
Malcolm
 

John Fox

Mike you are ICONIC... but does this download really cost $300 ?

Funny that a computer term would turn out to be a compliment ;-)

I'll write you one for half the price!


Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top