M
Mike Fechner
Guest
Accoring to the MSDN, the Param property is an array of EncoreParameter objects. Not a single reference. So this compiles for me: define variable oEncoderParameters as System.Drawing.Imaging.EncoderParameters no-undo . define variable oEncoderParameter as System.Drawing.Imaging.EncoderParameter no-undo . define variable v-PCcompress as integer no-undo . DEFINE VARIABLE oArray AS System.Drawing.Imaging.EncoderParameter EXTENT 1 . assign oEncoderParameter = new System.Drawing.Imaging.EncoderParameter ( System.Drawing.Imaging.Encoder : Quality , v-PCcompress ) oEncoderParameters = new System.Drawing.Imaging.EncoderParameters ( 0 ). oArray [ 1 ] = oEncoderParameter . assign oEncoderParameters : param = oArray .
Continue reading...
Continue reading...