Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exporting general fields
Message
From
22/04/1998 00:16:42
 
 
To
21/04/1998 12:00:09
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00093618
Message ID:
00093892
Views:
26
Thanks. I'll try this out.

>>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
Previous
Reply
Map
View

Click here to load this message in the networking platform