Click here to Skip to main content
15,881,598 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: Search Box In Windows Form Pin
Luc Pattyn15-Apr-12 3:24
sitebuilderLuc Pattyn15-Apr-12 3:24 
AnswerRe: Search Box In Windows Form Pin
Richard MacCutchan15-Apr-12 3:50
mveRichard MacCutchan15-Apr-12 3:50 
GeneralRe: Search Box In Windows Form Pin
Anurag Sarkar15-Apr-12 3:53
Anurag Sarkar15-Apr-12 3:53 
GeneralRe: Search Box In Windows Form Pin
Richard MacCutchan15-Apr-12 4:19
mveRichard MacCutchan15-Apr-12 4:19 
GeneralRe: Search Box In Windows Form Pin
Anurag Sarkar15-Apr-12 3:55
Anurag Sarkar15-Apr-12 3:55 
QuestionDatagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 2:00
harvid12-Apr-12 2:00 
AnswerRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 3:08
mvePete O'Hanlon12-Apr-12 3:08 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 3:11
harvid12-Apr-12 3:11 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 3:13
mvePete O'Hanlon12-Apr-12 3:13 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 3:29
harvid12-Apr-12 3:29 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 3:50
mvePete O'Hanlon12-Apr-12 3:50 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 4:03
harvid12-Apr-12 4:03 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 5:05
mvePete O'Hanlon12-Apr-12 5:05 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 5:18
harvid12-Apr-12 5:18 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 5:51
mvePete O'Hanlon12-Apr-12 5:51 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 21:38
harvid12-Apr-12 21:38 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Pete O'Hanlon12-Apr-12 22:10
mvePete O'Hanlon12-Apr-12 22:10 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid12-Apr-12 23:17
harvid12-Apr-12 23:17 
AnswerRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Luc Pattyn13-Apr-12 1:58
sitebuilderLuc Pattyn13-Apr-12 1:58 
When an event is called SomethingChanged, you expect it to fire only when Something gets a value different from the current one. However in WinForms some of those events will also fire when assigning the same value as the property already had, and that is one way to get StackOverflowException. The easiest way around is by explicitly testing yourself, as in:

    ...
    if (Something!=theValueIWant) Something=theValueIWant;
    ...
}


And yes, those events carry the wrong name, should have been GotAssignedTo or something such.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid13-Apr-12 3:05
harvid13-Apr-12 3:05 
AnswerRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
Luc Pattyn13-Apr-12 3:57
sitebuilderLuc Pattyn13-Apr-12 3:57 
GeneralRe: Datagridview cell not updating in Windows 2008 SP2 server Pin
harvid16-Apr-12 3:01
harvid16-Apr-12 3:01 
Question.... Pin
Arul R Ece10-Apr-12 23:42
Arul R Ece10-Apr-12 23:42 
GeneralRe: earthquake Pin
Pete O'Hanlon11-Apr-12 0:15
mvePete O'Hanlon11-Apr-12 0:15 
QuestionQuestion related to Windows Form Pin
Shikha Rani10-Apr-12 19:29
Shikha Rani10-Apr-12 19:29 

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.