In case Frank or anyone else is still looking for a solution to this, I believe the problem is the file format. Apparently there are 3 EMF file formats:
- EMF - this format contains only GDI records. It can be rendered using GDI or GDI+
- EMF Plus Only - this format contains only GDI+ records. It can only be rendered using GDI+ (but is much smaller in size than the GDI version of EMF)
- EMF Plus Dual - this format contains both GDI and GDI+ records. It can be rendered using GDI or GDI+, but when rendering in GDI it uses the GDI info, and when rendering in GDI+ it uses the GDI+ info (which apparently can produce better results)
My situation sounds exactly like Frank's - I was generating a chart, saving it as EMF, and attempting add the EMF file to a VPE document. (Maybe Frank and I are even using the same tools to do it!) Anyway, I, too, was only getting a blank rectangle in my document, whereas other file formats worked fine. I finally discovered that the charting tool was using the EMF Plus Only format. Since the charting tool is open source, I was able to change the EMF format, and I found that either of the other 2 formats, EMF or EMF Plus Dual, worked perfectly with VPE. I assume that VPE is using the older GDI API, and that's why the EMP Plus format doesn't work. I am using VPE 6.10, BTW.
Hope this helps!
Mike