Click here to Skip to main content
15,912,578 members

Comments by Digambar Malla (Top 32 by date)

Digambar Malla 18-Jan-16 4:19am View    
Thanks a Lot...sometimes simple is best :)
Digambar Malla 8-Jan-16 1:12am View    
@Bill, Thank you for your elaborate response. I hope You are aware that every note is loaded in runtime (i.e all the labels are created at runtime for every note). I think the user control you have created is not complete and u have kept in mind about runtime creation of labels for the note.
Digambar Malla 7-Jan-16 6:30am View    
@Bill, Your Query:--you want to use a separate Form to display-full-size, or, edit the Notes ... is that correct ? CORRECT.
In your application, are you going to need to save (and later restore) the data in the Notes ? Yes I have to do because sometimes I have to update the note.

Again Thanks for your clarification & as said need some Idea/Code.

Again I tried to use something like this :

http://stackoverflow.com/questions/33497033/getting-control-details-loaded-in-panel-dynamically-in-winforms/33497824#33497824

But Panel mouse click event is not fired. This may be due to the panel contains the controls inside it, the panel event is not fired.
Digambar Malla 7-Jan-16 3:49am View    
Deleted
@Bill, Your Query:--you want to use a separate Form to display-full-size, or, edit the Notes ... is that correct ? CORRECT.
In your application, are you going to need to save (and later restore) the data in the Notes ? Yes I have to do because sometimes I have to update the note.

Again Thanks for your clarification & as said need some Idea/Code.

Again I tried to use something like this : http://stackoverflow.com/questions/33497033/getting-control-details-loaded-in-panel-dynamically-in-winforms/33497824#33497824

But Panel mouse click event is not fired, but mouse enter event fired and with mouse enter event I am able to get all the details. But I want it with Mouse Click !!!
Digambar Malla 6-Jan-16 23:22pm View    
@Bill, Yes the labels NoteId, NoteName and NoteType are labels. whenever a user clicks on either of these all the three values along with other field values of that NOTE should be displayed in another set of textboxes which are present in the form. These textboxes are present for editing a Note. Also Note contains some other fields, but when user clicks on those it shouldn't do any action. I want something, when user clicks on these 3 fields, code should identify the NoteId of that particular Note.

Can I use Tag property of a label (As suggestion given Below) wrt that NoteId so that I can use it, If yes how ?