Click here to Skip to main content
15,867,686 members
Home / Discussions / Windows Forms
   

Windows Forms

 
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
subeditorPete 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
subeditorPete 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
subeditorPete 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
subeditorPete O'Hanlon11-Apr-12 0:15 
QuestionQuestion related to Windows Form Pin
Shikha Rani10-Apr-12 19:29
Shikha Rani10-Apr-12 19:29 
AnswerRe: Question related to Windows Form Pin
Abhinav S10-Apr-12 19:40
Abhinav S10-Apr-12 19:40 
AnswerRe: Any suggestions about barcode generation? Pin
Richard MacCutchan14-Mar-12 1:25
mveRichard MacCutchan14-Mar-12 1:25 
QuestionDo any ad platforms exist for desktop apps? Pin
jeffb422-Mar-12 8:47
jeffb422-Mar-12 8:47 
AnswerRe: Do any ad platforms exist for desktop apps? Pin
Dave Kreskowiak2-Mar-12 12:42
mveDave Kreskowiak2-Mar-12 12:42 
GeneralRe: Do any ad platforms exist for desktop apps? Pin
jeffb422-Mar-12 13:13
jeffb422-Mar-12 13:13 
GeneralRe: Do any ad platforms exist for desktop apps? Pin
Dave Kreskowiak2-Mar-12 13:40
mveDave Kreskowiak2-Mar-12 13:40 
Question[VC++] Getting mouse position Pin
kctong5292-Mar-12 1:43
kctong5292-Mar-12 1:43 
AnswerRe: [VC++] Getting mouse position Pin
Richard MacCutchan2-Mar-12 2:26
mveRichard MacCutchan2-Mar-12 2:26 
Questioni prefer vb.net Pin
isaacleye29-Feb-12 20:18
isaacleye29-Feb-12 20:18 
AnswerRe: i prefer vb.net Pin
Pete O'Hanlon29-Feb-12 21:56
subeditorPete O'Hanlon29-Feb-12 21:56 
AnswerRe: i prefer vb.net Pin
Simon_Whale29-Feb-12 22:04
Simon_Whale29-Feb-12 22: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.