Search results for query: *

  • Users: flashkid10
  • Content: Threads
  • Order by date
  1. flashkid10

    Attaching a XmlSerializer to Progress Bar from a Background worker

    How do I attaching a XmlSerializer to Progress Bar (called SaveBar)? the Serializer is called from a background worker public class TestObject { public int OneValue { get; set; } public int TwoValue { get; set; } } TestObject test = new TestObject { OneValue = 5, TwoValue = 4 }; private void...
  2. flashkid10

    Listview Check box header

    I currently have a listview that contain 5 columns and atextbox that helps search though the data stored. the search function isworking, but I want to link it to five bools (one for each column) so that Ican search though it faster. how do I attach a checkbox to just the columnheaders (and still...
  3. flashkid10

    Extracting a byte[] from XML File

    I currently have a system in a which I store an image to a byte[] (cover) in a class instance. I'm trying to extract a byte[] from the class instance, but I don't know how to do that. the code I'm using is List<Item> information; information = (from e in...
  4. flashkid10

    DataGridview specific cell back color

    I have a DadtaGridview that hold the name of events happening every day of the week (7 columens), and each of them has a different status which corresponds to a color. how do i set a specific backcolor or border of a specific cell?
  5. flashkid10

    Listview SubItem ClickEvent

    I'm current creating an app (POC) that list events, and it is going to have a weekly view (Sun-Sat). when you click on a cell it will do something; I want to send a number at a method called "ShowDetails(int x), how would I tag a number onto a subitem and have it send it when the subitem is...
  6. flashkid10

    Loading of different panels

    I am making a list manager andIi want to add in a details display on the side. the are many different datatypes being displayed on the main table and for each class of data, I want a different panel to show it's unique specific data. I know of the layering panel method, but I am always tweaking...
  7. flashkid10

    Question Retrieving a image from database

    I am currently learning how to work with databases within c#Winforms. I have created a column in the DList (the Access database) called "Cover". it stores attachments, most of them have an image in them. how do i extract the image (perferable both jpg and png) from the database (i already have...
Back
Top Bottom