Set V1 = OE.GetProjectByIID(Tree.SelectedItem.Tag)
V1.Start
V1.Export("C:\Export",1,0,1,1,OEFF_AsIs,0)
On line "V1.Export...", VB6 Pro returns a compile error even if I provide apparently the right parameters.
Any idea?
TIA
http://www.metaproducts.com/download/betas/oee1852.zip
Regarding the Export command. What if you would try the following:
V1.Export("C:\Export",1,0,1,1,0,0)
Does this help?
Best regards,
Oleg Chernavin
MP Staff
>
> http://www.metaproducts.com/download/betas/oee1852.zip
>
> Regarding the Export command. What if you would try the following:
>
> V1.Export("C:\Export",1,0,1,1,0,0)
>
> Does this help?
>
> Oleg Chernavin
> MP Staff
Thanks for your prompt reply.
I cannot find oee1852.zip in http://www.metaproducts.com/download/betas
I have tried again with Offline Explorer Enterprise 3.4.1844 Service Release 1 with V1.Export("C:\Export",1,0,1,1,0,0) but I still have the same error. (I have unregistered and reregistered the DLL)
Could you send me oee1852.zip or make it available on http://www.metaproducts.com/download/betas ?
Does it include some change about export function?
TIA and best regards
R. Perriguey
Oleg.
I have solved the issue.
We have to write
result = V1.Export("C:\Export",1,0,1,1,0,0) and not only V1.Export("C:\Export",1,0,1,1,0,0)
Thanks again for your prompt reply.
R. Perriguey
Oleg.