Click here to Skip to main content
15,896,290 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: New SDK for visual studio projects Pin
Richard MacCutchan18-Mar-11 10:45
mveRichard MacCutchan18-Mar-11 10:45 
GeneralRe: New SDK for visual studio projects Pin
rodrigogroff18-Mar-11 11:00
rodrigogroff18-Mar-11 11:00 
AnswerRe: New SDK for visual studio projects Pin
PIEBALDconsult18-Mar-11 19:15
mvePIEBALDconsult18-Mar-11 19:15 
QuestionSSH for File transfer Pin
byka16-Mar-11 1:53
byka16-Mar-11 1:53 
AnswerRe: SSH for File transfer Pin
Rick Shaub16-Mar-11 7:05
Rick Shaub16-Mar-11 7:05 
QuestionProblem with MSER extracting Pin
thematteo16-Mar-11 0:53
thematteo16-Mar-11 0:53 
Questioncommunication between 2 windows Pin
Defender-NF14-Mar-11 7:59
Defender-NF14-Mar-11 7:59 
AnswerRe: communication between 2 windows Pin
Pete O'Hanlon14-Mar-11 8:09
mvePete O'Hanlon14-Mar-11 8:09 
Well, in the MainWindow class, you define a property for Window2 that you don't assign to. In the code for Openwindows2_Click, you create a local variable version of Window2, and instantiate that. So, you can't get to Window2 outside of this method because it's not in scope. You do a similar thing in Window2 attempting to reference MainWindow.

So, the first fix is to stop using the method level variable, and use the property. The second thing I'd look at is using a delegate, rather than relying on the second form directly calling a method on the first form. To do this, create a delegate in Window2 which your MainWindow class subscribes to, and then call this delegate from Window2, which will notify MainWindow that there's something to do. If this seems familiar to you, it's because this is how events work in .NET.

I'm not a stalker, I just know things. Oh by the way, you're out of milk.

Forgive your enemies - it messes with their heads


My blog | My articles | MoXAML PowerToys | Onyx


GeneralRe: communication between 2 windows Pin
Defender-NF14-Mar-11 8:14
Defender-NF14-Mar-11 8:14 
GeneralRe: communication between 2 windows Pin
Pete O'Hanlon14-Mar-11 10:24
mvePete O'Hanlon14-Mar-11 10:24 
AnswerRe: communication between 2 windows [modified] Pin
RobCroll14-Mar-11 12:20
RobCroll14-Mar-11 12:20 
GeneralRe: communication between 2 windows Pin
Defender-NF15-Mar-11 2:31
Defender-NF15-Mar-11 2:31 
GeneralRe: communication between 2 windows Pin
Pete O'Hanlon15-Mar-11 3:00
mvePete O'Hanlon15-Mar-11 3:00 
QuestionUnknown error mapping drive. Return result=1208 Pin
byka14-Mar-11 2:48
byka14-Mar-11 2:48 
AnswerRe: Unknown error mapping drive. Return result=1208 Pin
Luc Pattyn14-Mar-11 3:07
sitebuilderLuc Pattyn14-Mar-11 3:07 
AnswerRe: Unknown error mapping drive. Return result=1208 Pin
englebart16-Mar-11 1:47
professionalenglebart16-Mar-11 1:47 
QuestionConnecting Lex generated code with VC++.NET Pin
nautiyal.sudhanshu10-Mar-11 8:01
nautiyal.sudhanshu10-Mar-11 8:01 
AnswerRe: Connecting Lex generated code with VC++.NET Pin
Rob Grainger25-Mar-11 5:25
Rob Grainger25-Mar-11 5:25 
QuestionHow i can get the Device driver information in .net4.0 Pin
wasimsharp10-Mar-11 4:05
wasimsharp10-Mar-11 4:05 
Answerrepost alert Pin
Luc Pattyn10-Mar-11 4:08
sitebuilderLuc Pattyn10-Mar-11 4:08 
Questionvoice recognition Pin
baadsah.499-Mar-11 5:33
baadsah.499-Mar-11 5:33 
AnswerRe: voice recognition Pin
Pete O'Hanlon9-Mar-11 7:15
mvePete O'Hanlon9-Mar-11 7:15 
AnswerRe: voice recognition Pin
Abhinav S9-Mar-11 17:55
Abhinav S9-Mar-11 17:55 
QuestionRegularExpressions.Regex Pin
byka9-Mar-11 1:52
byka9-Mar-11 1:52 
AnswerRe: RegularExpressions.Regex Pin
Pete O'Hanlon9-Mar-11 1:55
mvePete O'Hanlon9-Mar-11 1:55 

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.