how to save Graph?

VB.NET:
Expand Collapse Copy
img1.image.save(filename)
 
Did you ever think to actually set a filename in that string?

VB.NET:
Expand Collapse Copy
img1.Image.Save("bitmap.bmp")
documentation said:
Image.Save Method (String)

Parameters

filename : A string that contains the name of the file to which to save this Image object.
 
Back
Top