Click here to Skip to main content
16,013,322 members

Comments by Sharma Hussein (Top 3 by date)

Sharma Hussein 27-Nov-16 16:02pm View    
Deleted
Bitmap's use unmanaged resources and that led to memory pressure issues. I Wrapped bm_source with a' Using ' statement blocks and disposed all bitmaps and graphics. that seems to have fixed it. Thanks
Sharma Hussein 27-Nov-16 13:21pm View    
here
Dim bm_dest As New Bitmap( _
CInt(bm_source.Width * scale_factor), _
CInt(bm_source.Height * scale_factor))
Sharma Hussein 9-Aug-16 3:08am View    
No errors, and its working. Thanks for the tip, will remember that for the future. Thanks.