Search results for query: *

  1. C

    Getting width/height of image without loading the whole thing...

    For my application I am required to get the pixel dimensions of thousands of images of various formats as quickly as possible. Right now I am loading the image into a bitmap using standard .NET code (something like Dim img as Bitmap = Bitmap.FromFile(PathString), width = img.Width, etc...). This...
  2. C

    DataGridView DataError exception when removing items from bound list

    Hi, I am using a DataGridView bound to a BindingSource which is itself bound to a List of objects. This all works well until I remove objects from the list. If I am scrolled down to the bottom of the DataGridView and then remove a bunch of items from the list it is bound to it generates a...
  3. C

    Updating large list instantly - Datagridview vs. Listview vs. ???

    Hello, this is my first post here, I registered because I have a problem and I was wondering if anyone here would have a good idea to help me. What I am trying to do is to instantly apply a filter to a large list of data such that the list is updated almost immediately regardless of the number...
Back
Top