User Profile

Collapse

Profile Sidebar

Collapse
Stubbie
Stubbie
Last Activity: Dec 20 '09, 01:48 AM
Joined: Apr 22 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • You'll notice in my deserialization I used Inputs.InputFil e instead of List<Inputs.Inp utFile>. That simple change makes everything work!
    See more | Go to post

    Leave a comment:


  • Issues with XML Deserialization of List<CustomObject>

    have an object (InputFile) that I am able to successfully serialize to XML and deserialize back into the object through an IXmlSerializabl e interface.

    Now I'm trying to serialize a List<InputFile> to XML. I'm using the following code:


    Code:
    XmlSerializer s = new XmlSerializer(typeof(List<Inputs.InputFile>));
    TextWriter w = new StreamWriter("c:\\out.xml");
    XmlSerializerNamespaces
    ...
    See more | Go to post

  • Stubbie
    started a topic Hardware accelerated drawing for a control

    Hardware accelerated drawing for a control

    I'm updating a legacy application that uses GDI to plot a large number of points (500k+) in a fraction of a second. I've tried recreating the plotting control in GDI+/C# and the same draw operation takes over 3 seconds, which is unacceptable for the intended application. I believe the difference is due to GDI being hardware accelerated but not GDI+.

    What drawing technology should I use to build this control? This application needs...
    See more | Go to post

  • Stubbie
    started a topic Bind 2D Array to DataGridView
    in .NET

    Bind 2D Array to DataGridView

    Hello,

    I have experimental data stored in a List<> of double arrays, List<double[]> Values; Each element of the List<> represents a different series of values and the double[] is the set of the actual values.

    Typically I have several dozen different series, each with about 100,000 points. Based on where a user selects in a chart, I will automatically scroll to the selected point, also allowing the...
    See more | Go to post

  • Stubbie
    replied to Inner Join Query and Combo Box
    Fantastic, works perfectly, thank you! Also, the other information will be helpful as I finish this (hopefully) simple application.

    A point to anybody else who reads this message, be sure to include AccountHandler (the linked ID field) in your query you base the form off, otherwise it doesn't seem to completely update correctly.
    See more | Go to post

    Leave a comment:


  • Stubbie
    replied to Inner Join Query and Combo Box
    Allow me to clarify:

    I have two tables, Clients and Reps with the following fields:

    Clients
    ----------
    ID (AutoNumber)
    Name
    Company
    AccountHandler (Number)

    Reps
    --------
    ID (AutoNumber)
    Name

    There is a 1 Reps.ID to Many Clients.Account Handler relationship (Reps.ID is 1:many on Clients.Account Handler).

    I would like to...
    See more | Go to post

    Leave a comment:


  • Stubbie
    started a topic Inner Join Query and Combo Box

    Inner Join Query and Combo Box

    Hello!

    I have a query that joins two tables in my Access 97 database:

    Code:
    SELECT Table1.A, Table1.B, Table1.C, Table2.E FROM Table2 INNER JOIN Table1 on Table2.D = Table1.C;
    The query works as expected, associating the correct Table2.E with the rows in Table 1.

    I used to the Access form wizard to create a form around this query, and that works correctly, if I manually enter Table2.E...
    See more | Go to post
No activity results to display
Show More
Working...