Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to extract QVD files from QVF application??
If you solely can use the qvf and not make any changes to I then you can still make use of @marcus_sommer suggestion after loading your original qvf data into a new application using BINARY.
EXAMPLE:
binary LIB://qvf_directory/filename.qvf;
Paste Marcus suggestion here...
In the end of the qvf-loadscript with something like this:
for i = 1 to nooftables()
let t = tablename(tablenumber($(i));
[$(t)] noconcatenate load * resident [$(t)];
store [$(t)] into [$(t).qvd] (qvd); drop tables [$(t)];
next
If you solely can use the qvf and not make any changes to I then you can still make use of @marcus_sommer suggestion after loading your original qvf data into a new application using BINARY.
EXAMPLE:
binary LIB://qvf_directory/filename.qvf;
Paste Marcus suggestion here...