Click here to Skip to main content
15,909,939 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: Copying last created file in a directory [modified] Pin
MicroVirus9-Aug-11 14:00
MicroVirus9-Aug-11 14:00 
AnswerRe: Copying last created file in a directory PinPopular
Alan N10-Aug-11 0:34
Alan N10-Aug-11 0:34 
GeneralRe: Copying last created file in a directory Pin
Muammar©10-Aug-11 7:08
Muammar©10-Aug-11 7:08 
GeneralRe: Copying last created file in a directory Pin
Muammar©10-Aug-11 7:18
Muammar©10-Aug-11 7:18 
GeneralRe: Copying last created file in a directory Pin
Alan N10-Aug-11 13:25
Alan N10-Aug-11 13:25 
GeneralRe: Copying last created file in a directory Pin
Muammar©13-Aug-11 20:27
Muammar©13-Aug-11 20:27 
QuestionFileStreams Pin
Moleleki108-Aug-11 2:41
Moleleki108-Aug-11 2:41 
AnswerRe: FileStreams Pin
Simon_Whale8-Aug-11 2:55
Simon_Whale8-Aug-11 2:55 
QuestionThrough one router only, will UDP package out of order? Pin
zipliu3-Aug-11 6:46
zipliu3-Aug-11 6:46 
AnswerRe: Through one router only, will UDP package out of order? Pin
Dave Kreskowiak3-Aug-11 8:35
mveDave Kreskowiak3-Aug-11 8:35 
GeneralRe: Through one router only, will UDP package out of order? Pin
zipliu3-Aug-11 12:37
zipliu3-Aug-11 12:37 
GeneralRe: Through one router only, will UDP package out of order? Pin
Dave Kreskowiak3-Aug-11 12:53
mveDave Kreskowiak3-Aug-11 12:53 
GeneralRe: Through one router only, will UDP package out of order? Pin
MicroVirus9-Aug-11 14:02
MicroVirus9-Aug-11 14:02 
QuestionRecommendation for Charts control Pin
devvvy27-Jul-11 20:51
devvvy27-Jul-11 20:51 
AnswerRe: Recommendation for Charts control Pin
RobCroll9-Aug-11 0:26
RobCroll9-Aug-11 0:26 
QuestionParent UserControl fails to draw when child UserControl is updated. Pin
cjb11024-Jul-11 1:15
cjb11024-Jul-11 1:15 
AnswerRe: Parent UserControl fails to draw when child UserControl is updated. Pin
Dave Kreskowiak24-Jul-11 3:24
mveDave Kreskowiak24-Jul-11 3:24 
GeneralRe: Parent UserControl fails to draw when child UserControl is updated. Pin
cjb11025-Jul-11 2:41
cjb11025-Jul-11 2:41 
QuestionDeploy Windows Application Pin
Ramkumar_S21-Jul-11 18:07
Ramkumar_S21-Jul-11 18:07 
AnswerRe: Deploy Windows Application [modified] Pin
dan!sh 21-Jul-11 20:58
professional dan!sh 21-Jul-11 20:58 
AnswerRe: Deploy Windows Application Pin
RobCroll21-Jul-11 21:25
RobCroll21-Jul-11 21:25 
GeneralRe: Deploy Windows Application Pin
dan!sh 21-Jul-11 22:07
professional dan!sh 21-Jul-11 22:07 
AnswerRe: Deploy Windows Application Pin
Bert Mitton18-Aug-11 5:54
professionalBert Mitton18-Aug-11 5:54 
QuestionPlotting large amounts of data Pin
EitsopGmail15-Jul-11 2:58
EitsopGmail15-Jul-11 2:58 
Hello, I am half way through developing a graphing control. It includes the normal things like pan/zoom/multiple y axes. It is intended to be populated by reading data from a CSV file or something like that, but I can change that to whatever later if I need to - it's just a datasource.

The trouble I am having is with the amount of data. Lets say I have 131200 data records to plot, and only 1000 pixels to plot them in. Now I have two options:

1. Plot the record for each pixel.
2. Plot every record, using PointF's and letting windows sort it out.

The downsides are (respectively):

1. Data is missed, or stepped over. If we zoom in the data changes, this doesn't look good.
2. It takes ages drawing a 131200 points of data, and when zooming/panning it's slow. I have thought about plotting the data onto a offscreen bitmap so that panning is fast, but that doesn't help zooming.

Please don't suggest using transformations - they are slow when using large data sets.
A bitmap of the data size would also be unusable ( e.g. 131200x600x24 bit is about 250 Mb).

Any help on how I could plot the image for both speed and accruacy.


Many thanks,
AnswerRe: Plotting large amounts of data [modified] Pin
BillWoodruff17-Jul-11 20:48
professionalBillWoodruff17-Jul-11 20:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.