I'm trying to save my map as an image and am using this code:
Dim map As String
With cdbSave
.DefaultExt = ".jpg"
.DialogTitle = "Save Map As..."
.Filter = "Map (*.jpg)"
.InitDir = App.Path
.ShowSave
End With
map = cdbSave.FileName
Call SavePicture(picMap.Image, map)
And when I use it it saves a blank image even if I have something drawn on it. Any suggestions?