Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exporting general fields
Message
From
21/04/1998 12:00:09
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
21/04/1998 08:13:08
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00093618
Message ID:
00093688
Views:
24
>I have a table with a general field that would contain Excel worksheets. What I need is a way to extract the contents of the general field to their native format. I used APPEND GENERAL genfield FROM xlfile. What's the "opposite" of this command?
>
>Regards,
>
>jun
>ramoneem@mail.aramco.com.sa
As John said you could modify general and saveas or do it programmatically (your mother tongue is also not English so I got your question how to save a copy ) :
use myTable  && Contains a general field
oform = createobject("form")
with oForm
  .addobject("olbW","Oleboundcontrol")
  .height = 420
  .width = 620
  with .olbW
   .top = 0
   .left = 400
   .height = 400
   .width = 600
   .controlsource = mytable.mygenfield    && Embedded doc or xls
   .object.saveas(cFilename)
  endwith 
  .release
endwith
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform