Click here to Skip to main content
15,921,577 members
Home / Discussions / C#
   

C#

 
QuestionRe: How to know if the mobile is downloading or uploading data from internet? Pin
supercsharp119-Dec-07 18:16
supercsharp119-Dec-07 18:16 
GeneralRe: How to know if the mobile is downloading or uploading data from internet? Pin
Paul Conrad24-Dec-07 19:42
professionalPaul Conrad24-Dec-07 19:42 
JokeRe: How to know if the mobile is downloading or uploading data from internet? Pin
PIEBALDconsult19-Dec-07 16:58
mvePIEBALDconsult19-Dec-07 16:58 
QuestionApplying event handlers to dynamically generated controls Pin
Spacedmc19-Dec-07 14:14
Spacedmc19-Dec-07 14:14 
GeneralRe: Applying event handlers to dynamically generated controls Pin
J$19-Dec-07 14:46
J$19-Dec-07 14:46 
GeneralRe: Applying event handlers to dynamically generated controls Pin
Spacedmc19-Dec-07 14:59
Spacedmc19-Dec-07 14:59 
GeneralRe: Applying event handlers to dynamically generated controls Pin
Luc Pattyn19-Dec-07 17:35
sitebuilderLuc Pattyn19-Dec-07 17:35 
GeneralRe: Applying event handlers to dynamically generated controls Pin
Anthony Mushrow19-Dec-07 14:49
professionalAnthony Mushrow19-Dec-07 14:49 
Event handlers are always asigned at runtime really...

You just have something like:

this.control.OnClick += new blahblahblah(someMethod);

Of course you will need to have already written the method you assign to the event. To get the exact code for an event and its method (as in what parameters you need, and what derivitive of EventArgs you need), add the desired event to any control, pop over to the designer generated code (probably in *filename*.designer.cs) and you will be able to see the code there, just Ctrl+F the name of the control you used.
My current favourite word is: Bauble!
-SK Genius


GeneralFileSystemWatcher and Threading Pin
#realJSOP19-Dec-07 11:19
professional#realJSOP19-Dec-07 11:19 
GeneralRe: FileSystemWatcher and Threading Pin
JoeRip19-Dec-07 17:21
JoeRip19-Dec-07 17:21 
GeneralRe: FileSystemWatcher and Threading Pin
JoeRip19-Dec-07 17:32
JoeRip19-Dec-07 17:32 
GeneralRe: FileSystemWatcher and Threading Pin
JoeRip19-Dec-07 17:45
JoeRip19-Dec-07 17:45 
GeneralRe: FileSystemWatcher and Threading Pin
#realJSOP19-Dec-07 23:20
professional#realJSOP19-Dec-07 23:20 
GeneralRe: FileSystemWatcher and Threading Pin
JoeRip20-Dec-07 1:40
JoeRip20-Dec-07 1:40 
GeneralRe: FileSystemWatcher and Threading Pin
#realJSOP20-Dec-07 2:37
professional#realJSOP20-Dec-07 2:37 
GeneralRe: FileSystemWatcher and Threading Pin
JoeRip20-Dec-07 1:42
JoeRip20-Dec-07 1:42 
GeneralProblems with CSV file blowing out memory Pin
LongRange.Shooter19-Dec-07 11:05
LongRange.Shooter19-Dec-07 11:05 
GeneralRe: Problems with CSV file blowing out memory Pin
Ed.Poore19-Dec-07 11:19
Ed.Poore19-Dec-07 11:19 
GeneralRe: Problems with CSV file blowing out memory Pin
LongRange.Shooter19-Dec-07 13:53
LongRange.Shooter19-Dec-07 13:53 
GeneralRe: Problems with CSV file blowing out memory Pin
Skippums19-Dec-07 12:39
Skippums19-Dec-07 12:39 
Generalrandom files with different date Pin
Shani Aulakh19-Dec-07 9:09
Shani Aulakh19-Dec-07 9:09 
GeneralRe: random files with different date Pin
pmarfleet19-Dec-07 9:20
pmarfleet19-Dec-07 9:20 
GeneralRe: random files with different date Pin
Anthony Mushrow19-Dec-07 9:48
professionalAnthony Mushrow19-Dec-07 9:48 
GeneralRe: random files with different date Pin
pmarfleet19-Dec-07 9:58
pmarfleet19-Dec-07 9:58 
GeneralRe: random files with different date Pin
Shani Aulakh19-Dec-07 17:50
Shani Aulakh19-Dec-07 17:50 

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.