User Profile
Collapse
-
You'll notice in my deserialization I used Inputs.InputFil e instead of List<Inputs.Inp utFile>. That simple change makes everything work! -
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 -
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... -
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... -
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.Leave a comment:
-
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...Leave a comment:
-
Inner Join Query and Combo Box
Hello!
I have a query that joins two tables in my Access 97 database:
The query works as expected, associating the correct Table2.E with the rows in Table 1.Code:SELECT Table1.A, Table1.B, Table1.C, Table2.E FROM Table2 INNER JOIN Table1 on Table2.D = Table1.C;
I used to the Access form wizard to create a form around this query, and that works correctly, if I manually enter Table2.E...
No activity results to display
Show More
Leave a comment: