The following worked fine in earlirer versions but in the latest I get an error
dr.ScreenCapture2(10,10, 100, 100)
Form1.Image = dr.Image
Msgbox("Captured part of the screen")
ImgSize() = dr.ImageSize(dr.Image) <<<<<<<<<<array types don't match
Msgbox("Captured Image Size : " & ImgSize.Width & " x " & ImgSize.Height)
ImgSize() = dr.ImageSize(Form1.Image) <<<<<<<<<array types don't match
Msgbox("Form Image Size : " & ImgSize.Width & " x " & ImgSize.Height)
dr.SaveImageBMP(dr.Image, AppPath & "\3.bmp")
dr.SaveImageJPEG(dr.Image, AppPath & "\3.jpg")
dr.SaveImageGIF(dr.Image, AppPath & "\3.gif")
In Globals Type(width,height)ImgSize
Whats in V6.851 that would cause that?? and how do I work around it