I am new to WPF, moving over from C++ so I am having a hard time getting my mind around some concepts and I am not sure if this can be done in only xaml.
Your problem sounds like a post-build problem, the project is built but something after the project has been built is not running. In your Project Settings->Post Build Step is there any call to...
Never mind, I found the answer. I came across the source code for netstat, which is what I want to display. If anyone comes across this problem, please look at Iphlpapi for functions available from...
Does anyone know of a function (or set of functions) like EnumProcesses that will list all the open sockets on a system? I have been looking at the WSA functions, but they seem to need a socket....
Do you mean that when you debug, you expect the break to happen on that line of code but it looks like it is breaking in the NM_CLICK handler? If that is the case, have you done a clean or a rebuild...
Would MSMQ do what you are looking to do? MSMQ was designed to be a middleware component for fast, reliable asynchronous electronic communication. It also ensures guaranteed message delivery, receipt...
This might be a silly question, but do you add images to m_TreeImg? From the code you posted, it looks like you are setting an empty image list to your tree control.
Why are you trying to instatiate a COM object?? You get an interface to a COM class and let the COM framework instatiate the class. Your code should look like this:
Here is where a button in your newwindow class will help. Add the button and handle the BN_CLICK message to step the control. If you really want it to step the control without toucking it, look at...
Instead of a hidden column, could you use CListCtrl::SetItemData to store the variable? Then in your CompareFunc do your comparison based on the item data.
Isn't registration of a COM exe done by passing RegServer on the command line? For your app would it be ComObj.exe RegServer. The _tWinMain function should have the code for this. Have you tried...