|
|
Yes you may contruct the MFC object anyway, but you HAVE to call GetLastError (as Albert Holguin already noted) to see what really happened.
Jun Du wrote: I don't know how CMutex behaves exactly, as we don't have its source. Is by chance your Visual Studio installation broken? Do you know MFC comes with source code, don't you?
As you are using MFC synchronization objects the following Newcomer's article is a worthy reading: "Avoid CMutex, CEvent, CSemaphore and CCrticalSection"[^].
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Jun Du wrote: I suspect that you can create multiple CMutex objects that use the same named kernel object. I don't know how CMutex behaves exactly, as we don't have its source
Nope, if you try to create same named mutex it going to give your exception, simple technique is one would create it and other would open it!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
OK, I'm going mad here. I have a dialog class which I am creating from a dialog resource and displaying as modeless. I have data members assigned to the various controls and most of them work fine, except the CComboBox data member. I am trying to add some string data to the control in the CMyDialog::OnCreate(LPCREATESTRUCT lpCreateStruct) but it asserts because the control's hwnd is null. Do I need to do anything special with a CComboBox? My code is like this...
int CFlushDialog::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDialog::OnCreate(lpCreateStruct) == -1)
return -1;
SetWindowPos(NULL, m_nXPos, m_nYPos, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
m_comboDataMember.AddString("Hello");
return 0;
}
I display the dialog like this...
m_flushDialog.Create(IDD_FLUSH_DLG, this);
m_flushDialog.ShowWindow(SW_SHOW);
Anyone have any ideas?
Tony
|
|
|
|
|
Why don't you add the data to the combobox in the OnInitDialog method ?
Watched code never compiles.
|
|
|
|
|
I think you will find that your ComboBox does not get created until after the dialog creation has completed. Use the OnInitDialog() function to handle intialisation of dialog controls.
The best things in life are not things.
|
|
|
|
|
Thanks Richard (and also Maximilien), your suggestion works great. I wasnt aware that OnInitDialog() still got called with modeless dialogs.
Tony
|
|
|
|
|
As others have suggested, all GUI initialization should occur in OnInitDialog() . The fact that some controls work is probably more of a coincidence in how they're implemented but should not be an indication that this is the proper place for this.
|
|
|
|
|
So class _base is a pure virtual class.
Class _child derives from it and implements the functions.
The code creates an instance of _base and uses it.
Question. It seems that when an instance of a pure virtual base class is created, an instance of its child is in fact created. Is this so?
An observation. VS finds it impossible to debug step into any functions of the _child instance.
Further question. What if you have two descendents from _base. How does the compiler know which one to instantiate?
While I know C++ well, I have never come across this before, and I would never code this way, it looks ugly, is unclear, and makes debugging impossible. (I work mostly in the kernel in C)
==============================
Nothing to say.
|
|
|
|
|
Eric__V wrote: instance of _base
I doubt on the term instance in case of pure virtual class.You can't create an instance of a class if it have a pure virtual function.May be the code is declaring the pointer of base class and assigning the instance of derived class.Like,
_base *pbase = new basederive();
Eric__V wrote: Further question. What if you have two descendents from _base. How does the compiler know which one to instantiate?
This will be done with help of virtual pointer table.There are lot of articles in code project on this.Start from this link,
ATL Under the Hood - Part 2
http://www.mono-project.com/Main_Page
|
|
|
|
|
Yeah, I just dug a bit dfeeper and indeed, it is newed off the derived class.
I still want to know why VS cant step into the damn code though. Its really pissing me off.
==============================
Nothing to say.
|
|
|
|
|
Eric__V wrote: I still want to know why VS cant step into the damn code though.
Have you compiled and built it in Debug mode?
The best things in life are not things.
|
|
|
|
|
Yeah, its running on a remote machine, so I am doing an 'attach to process' in VS. pdbs are on the remote machine with the exes and dlls (best way to handle symbols for VS IMO). OS symbols are stored on the dev machie locally and off Microsofts symsrv.
But weird, just cant step into the code. Its not even complaining about lack of source code and offering the view assembler approach.
Cant really devote time to finding out why its not doing it, too much real work to do else where.
==============================
Nothing to say.
|
|
|
|
|
Sorry, no more ideas, I've never tried debugging a remote process.
The best things in life are not things.
|
|
|
|
|
Eric__V wrote: How does the compiler know which one to instantiate?
venkatmakam wrote: This will be done with help of virtual pointer table.
No, instantiation is always explicitly written in code, and the proper virtual table is selected on instantiation.
|
|
|
|
|
Eric__V wrote: It seems that when an instance of a pure virtual base class is created, an instance of its child is in fact created.
When an instance of the derived class is created then you have also an instance of the base class (because 'derived' is 'base'): you cannot instantiate an abstract class.
Eric__V wrote: An observation. VS finds it impossible to debug step into any functions of the _child instance.
Visual Studio debugger should be able to do that (the debugger is one of the amazing features of Visual Studio, in my opinion).
Eric__V wrote: Further question. What if you have two descendents from _base. How does the compiler know which one to instantiate?
Choosing the appropriate derived class to instantiate (to get base class functionality) is up to you.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
I dug a bit deeper and in fact the _base pointer instance is new'ed as the sub classes.
And now I saw that, I remember from about 12 years ago, that I have seen this before. Spent the last 10 years pretty much 100% in the kernel so I guess I got a bit rusty with the old C++ inheritance game.
==============================
Nothing to say.
|
|
|
|
|
Eric__V wrote: The code creates an instance of _base and uses it.
Maybe I do not understand the question correctly.
You cannot create an instance of the base class if it contains pure virtual member functions.
class Onion
{
public:
virtual void f( ) = 0;
};
class Tata : public Onion
{
virtual void f();
};
...
Onion onion; // will generate a compiler error.
...
Watched code never compiles.
|
|
|
|
|
Even
Tata tata;
would generate a compiler error...
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
CPallini wrote: would generate a compiler error...
No, that does not generate a compiler error.
But maybe you're laughing at something else ?
Watched code never compiles.
|
|
|
|
|
Did you try it?
In your code the function implementation is missing.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
I think he meant that it won‘t be a compiler problem, but rather something the linker will stumble upon.
|
|
|
|
|
Good point. However I don't know if it is what he meant.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Your guess is as good a mine, I suppose. Only one person knows for sure.
|
|
|
|
|
It is never referenced, so the linker will not report it.
yeah, good catch!
Watched code never compiles.
|
|
|
|