Click here to Skip to main content
15,884,176 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi29-Nov-15 20:42
smallkubi29-Nov-15 20:42 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Pete O'Hanlon29-Nov-15 21:39
mvePete O'Hanlon29-Nov-15 21:39 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
BillWoodruff29-Nov-15 22:52
professionalBillWoodruff29-Nov-15 22:52 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 2:27
smallkubi30-Nov-15 2:27 
AnswerRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming29-Nov-15 23:18
mveRichard Deeming29-Nov-15 23:18 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 3:02
smallkubi30-Nov-15 3:02 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming30-Nov-15 3:17
mveRichard Deeming30-Nov-15 3:17 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 4:24
smallkubi30-Nov-15 4:24 
Great Job!!! Thank you very much.
And i have other question bothering me.
I have to use chart control to plot 10 series including 1000 points per series in one chartarea. But after ploting, mouse move or zoom in or ContextMenuStrip operation is very slow and delay. I think maybe paint problem.
When i ask before, i get the answer is point number is too big.
But i found that if i plot 200 series with 1 point for example as follows, the operation is also slow. How can treat it?

follows is for example:

Series series1;
for(int i=0;i<200;i++)
{
series1=new series();
series1.Points.Add(new DataPoint(i,i));
chart1.Series.Add(series1);
}
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 4:55
professionalEddy Vluggen30-Nov-15 4:55 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 5:02
smallkubi30-Nov-15 5:02 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 7:03
professionalEddy Vluggen30-Nov-15 7:03 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi30-Nov-15 15:48
smallkubi30-Nov-15 15:48 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen30-Nov-15 23:16
professionalEddy Vluggen30-Nov-15 23:16 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi1-Dec-15 13:59
smallkubi1-Dec-15 13:59 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Eddy Vluggen1-Dec-15 23:59
professionalEddy Vluggen1-Dec-15 23:59 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi4-Dec-15 19:23
smallkubi4-Dec-15 19:23 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming7-Dec-15 0:32
mveRichard Deeming7-Dec-15 0:32 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi7-Dec-15 5:51
smallkubi7-Dec-15 5:51 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming7-Dec-15 6:55
mveRichard Deeming7-Dec-15 6:55 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
smallkubi19-Dec-15 6:50
smallkubi19-Dec-15 6:50 
GeneralRe: how to use delegate to call function and introduce function as content? Pin
Richard Deeming4-Jan-16 2:21
mveRichard Deeming4-Jan-16 2:21 
QuestionOrder number of datagridview ? Pin
Member 245846729-Nov-15 15:36
Member 245846729-Nov-15 15:36 
AnswerRe: Order number of datagridview ? Pin
Eddy Vluggen30-Nov-15 2:28
professionalEddy Vluggen30-Nov-15 2:28 
GeneralRe: Order number of datagridview ? Pin
Member 245846730-Nov-15 15:04
Member 245846730-Nov-15 15:04 
QuestionMonitoring FTP-Server incomming Pin
gpc4427-Nov-15 3:40
gpc4427-Nov-15 3:40 

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.