Search results for query: *

  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

    Sorry it took so long to respond, yeah that work, but is there a way to change the checkstatus to true? also, is there a way toremove the outline arounf the text?
  3. 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...
  4. flashkid10

    Extracting a byte[] from XML File

    Okay, I got it to work, I had the default value on the array set to empty. Thank you!
  5. flashkid10

    Extracting a byte[] from XML File

    I don't understand, What name should I use, because the Byte array is named "Cover"
  6. flashkid10

    Extracting a byte[] from XML File

    It throws a exception in both cases Exception thrown: 'System.ArgumentNullException' in mscorlib.dll Additional information: Value cannot be null.
  7. flashkid10

    Extracting a byte[] from XML File

    I Don't know what you mean by string representation, but I store the array in a public byte[] in the class Item and I save it to the XML by a method which contains public static void SaveData(List<Item> obj, string filename) { XmlSerializer sr = new...
  8. 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...
  9. flashkid10

    DataGridview specific cell back color

    Okay, thank you, its now working
  10. flashkid10

    DataGridview specific cell back color

    I don't think i understand, i'm doing what it says and it is instead applying the backcolor to the entire datagrid
  11. 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?
  12. 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...
  13. flashkid10

    Loading of different panels

    How would access the items within(mainly textboxs, combobox, and the int counter)?
  14. 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...
  15. flashkid10

    Question Retrieving a image from database

    Sorry it took so long to respond, I got it to work with the byte arrays
  16. 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