Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
GeneralRe: code project image search software Pin
OriginalGriff4-Jul-12 21:53
mveOriginalGriff4-Jul-12 21:53 
GeneralRe: code project image search software Pin
Pete O'Hanlon4-Jul-12 22:15
mvePete O'Hanlon4-Jul-12 22:15 
JokeRe: code project image search software Pin
Wayne Gaylard4-Jul-12 22:21
professionalWayne Gaylard4-Jul-12 22:21 
GeneralRe: code project image search software Pin
OriginalGriff4-Jul-12 22:31
mveOriginalGriff4-Jul-12 22:31 
GeneralRe: code project image search software Pin
Manfred Rudolf Bihy5-Jul-12 12:15
professionalManfred Rudolf Bihy5-Jul-12 12:15 
GeneralRe: code project image search software Pin
OriginalGriff5-Jul-12 20:46
mveOriginalGriff5-Jul-12 20:46 
GeneralRe: code project image search software Pin
Wes Aday5-Jul-12 4:45
professionalWes Aday5-Jul-12 4:45 
GeneralRe: code project image search software Pin
OriginalGriff5-Jul-12 4:49
mveOriginalGriff5-Jul-12 4:49 
GeneralRe: code project image search software Pin
Wes Aday5-Jul-12 5:17
professionalWes Aday5-Jul-12 5:17 
GeneralRe: code project image search software Pin
Dave Kreskowiak5-Jul-12 4:44
mveDave Kreskowiak5-Jul-12 4:44 
QuestionCant find onClick function in C# Pin
Member 90660254-Jul-12 20:47
Member 90660254-Jul-12 20:47 
AnswerRe: Cant find onClick function in C# Pin
Sebastian T Xavier5-Jul-12 1:58
Sebastian T Xavier5-Jul-12 1:58 
GeneralRe: Cant find onClick function in C# Pin
Member 90660255-Jul-12 2:08
Member 90660255-Jul-12 2:08 
GeneralRe: Cant find onClick function in C# Pin
Member 90660255-Jul-12 2:13
Member 90660255-Jul-12 2:13 
AnswerRe: Cant find onClick function in C# Pin
AmitGajjar5-Jul-12 2:01
professionalAmitGajjar5-Jul-12 2:01 
AnswerRe: Cant find onClick function in C# Pin
Alireza C5-Jul-12 10:52
Alireza C5-Jul-12 10:52 
GeneralRe: Cant find onClick function in C# Pin
AmitGajjar5-Jul-12 17:11
professionalAmitGajjar5-Jul-12 17:11 
GeneralRe: Cant find onClick function in C# Pin
Alireza C5-Jul-12 18:01
Alireza C5-Jul-12 18:01 
QuestionDataset TableNewRow Event [solved] Pin
Midnight Ahri4-Jul-12 16:54
Midnight Ahri4-Jul-12 16:54 
AnswerRe: Dataset TableNewRow Event Pin
OriginalGriff4-Jul-12 21:25
mveOriginalGriff4-Jul-12 21:25 
QuestionRe: Dataset TableNewRow Event Pin
Midnight Ahri4-Jul-12 21:35
Midnight Ahri4-Jul-12 21:35 
AnswerRe: Dataset TableNewRow Event Pin
OriginalGriff4-Jul-12 21:52
mveOriginalGriff4-Jul-12 21:52 
The properties page is only relevant in the designer - not in the code window, if that's where you are clicking.
You can't click a DataTable in the designer window directly - it doesn't have any UI element, so I assume you are highlighting the DataTable in the code window and trying to add an event? If so, then just on a new line in your code, type the name of the DataTable instance and press "." Intellisense will pop up a list of objects - select the event you want to add a handler for and type "+="
C#
myDataTable.ColumnChanged+=
Intellisense will pop up a handler helper box:
new DataColumnChangeEventHandler(dt_ColumnChanged);   (Press TAB to insert)
Press Tab to insert the text, and another box will appear:
Press TAB to generate Handler "dt_ColumnChanged" in this class
If you press Tab again, it will create a handler method stub for you to complete.

Once you have the basic code, you can modify or tweak it to fit what you want to do !
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water

QuestionRe: Dataset TableNewRow Event Pin
Midnight Ahri4-Jul-12 22:22
Midnight Ahri4-Jul-12 22:22 
AnswerRe: Dataset TableNewRow Event Pin
OriginalGriff4-Jul-12 22:34
mveOriginalGriff4-Jul-12 22:34 
AnswerRe: Dataset TableNewRow Event Pin
Midnight Ahri4-Jul-12 23:04
Midnight Ahri4-Jul-12 23:04 

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.