bmp = SaveViewAsBitmap(svJobInfo.Panel)
I have another Issue (I didn't know if to open another thread).
the problem is that after I am saving the return bitmap like this:
Dim bmp As Bitmap
bmp = SaveViewAsBitmap(svJobInfo.Panel)
Dim Out As OutputStream
Out = File.OpenOutput(File.DirRootExternal,"ImgScrollView.png", False)
b.WriteToStream (Out, 100, "PNG")
Out.Close
the first time the file is being create everything is good, the problem start when saving again with the same file name,
the file is not replaced I always see the first image I have created, I also tried to delete the file before creating it,
but still I am having the same problem, of seeing the first image that was created.
Bye the way If I am changing the file name before saving it , then it is ok, but I don't want to have a lot of files.
What am I missing here?