The easiest way to make your own report is to make a XSLT on the XML
export generated by the program.
Anand Zadbuke
A
It's possible to read the information about the form from the .FRM file and try to
reconstruct the form layout, but often this layout is only design-time layout
and doesn't present the real run-time state. There is also an additional problem
with unknown ActiveX controls and the binary data stored in the accompanying
.FRX file. So it's not always a good choice to try to recreate the form from the
source files.
The only possible, and I think better, solution is to include the IMG tags into the
documentation comments where necessary. For example, if you need an image of the
form in the form overview file generated by vbdox:
- create an snapshot of the form;
- include something like this in the module comment
<IMG src="my_form_snapshot.jpeg"/>
, where needed
- and assure the path to the image source file is correct.