When you create a graph, by default the image is returned from the graphing call as a bitmap, which can then be assigned to the Picture property of a PictureBox control or an Image control (or any other compatible ActiveX control.) For example, if you have an RDKDistribution object named "dist", you can make a bitmap graph image and assign it to a control named "Picture1" with a single line of code:
Set Picture1.Picture = dist.Graph(RDKCurveTypeDensity)
You can instead create a metafile image by changing the Destination property of the GraphDefaults structure, as demonstrated in the following code:
RDKApp.GraphDefaults.Destination = RDKMetafileImage
Set Picture1.Picture = dist.Graph(RDKCurveTypeDensity)