|
See here[^].
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
i need to pass the window through this ctor, the create function did not work because i do not have
a dialog in my rc, all what i need to do is to modify the normal font dialog(disable some fields in it).
CTestFontDialog(LPLOGFONT lplfInitial, DWORD dwFlags, CDC* pdcPrinter, CWnd* pParentWnd) :
CFontDialog(lplfInitial, dwFlags, pdcPrinter, pParentWnd)//pParentWnd ???(is this the window of the sdi appliction???)
|
|
|
|
|
|
susanne1 wrote: void CTest_Doc::OnInputFont()
{
CTestFontDialog sfdlg; // CTestFontDialog is derived from CFontDialog
tfdlg.OnInputFontDialog();
}
The variable sfdlg is not being used. Is this intentional?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
sorry it is type error the variable is an object of CTestFontDialog.
All what i need is to use a modified CFontDialog which has font, font style, and size fields this modified font dialog should be called from an sdi application (Class edit view).
|
|
|
|
|
Why are you not doing something like:
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
LOGFONT lf;
dlg.GetCurrentFont(&lf);
CString strFontName = dlg.GetFaceName();
CString strStyleName = dlg.GetStyleName();
int nSize = dlg.GetSize();
...
}
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
that is okay but the dialog should have less elements that the original CFontDialog, it should have
Font, font style and font size drop down menu. How can i blind out the other drop down menus?
|
|
|
|
|
susanne1 wrote: How can i blind out the other drop down menus?
Start here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
What line of what file is asserting (hint: what you've shown is not it)?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
|
Have you looked at that line? What version of VS are you using?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
modified on Friday, May 8, 2009 3:47 PM
|
|
|
|
|
hi all
I am writing a application in which i use the stl list. through this list i m able to inserting the items but not able to remove the item from specific position. this is my class
class ClipEntry
{
public:
//CoInitialize(NULL);
ClipEntry();
ClipEntry(const ClipEntry& r);
~ClipEntry();
const ClipEntry& operator=(const ClipEntry& r);
bool operator == (const ClipEntry& r);
private:
IGraphBuilder *m_pGraph;
IUnknown *m_pSinkFilter;
string m_strName;
REFERENCE_TIME m_tOffset;
REFERENCE_TIME m_tStart;
REFERENCE_TIME m_tStop;
// rewound ready to re-use
bool m_bPrimed;
};
I am inserting the items like this
HRESULT ClipPlayer::AddClip(char* path, ClipEntry** ppClip)
{
list<ClipEntry>::iterator it;
it = m_Clips.insert(m_Clips.end(), ClipEntry());
ClipEntry *pClip = &(*it);
*ppClip = pClip;
.........
}
but when i write the remove function like this
void ClipPlayer::RemoveClip(ClipEntry *pClip)
{
m_Clips.erase(&pClip);
// find(m_Clips.begin(),m_Clips.end(),pClip);
}
i am getting error
Could not find a match for 'list<ClipEntry,allocator<ClipEntry> >::erase(ClipEntry * *)'
how i solve this problem
|
|
|
|
|
raj1576 wrote:
list<ClipEntry>::iterator it;
...
void ClipPlayer::RemoveClip(ClipEntry *pClip)
{
m_Clips.erase(&pClip); i am getting error
Could not find a match for 'list<ClipEntry,allocator<ClipEntry> >::erase(ClipEntry * *)'
It seems like you're mixing up what type you're storing in the list...
You don't include the declaration for the m_Clips member variable.
Does it store ClipEntry or ClipEntry* ?
The compiler error a probably caused by the fact that std::list::erase()
expects an iterator as argument and not a pointer to an element in the list.
"It's supposed to be hard, otherwise anybody could do it!" - selfquote "High speed never compensates for wrong direction!" - unknown
|
|
|
|
|
so how i pass this argumet in the erase()?
i am getting the whole value of the list in the ClipEntry *pClip which i want to remove.
RemoveClip(ClipEntry *pClip)
|
|
|
|
|
As Stuart said, std::list::remove is the function you should use as it expects a reference to an instance of the type controlled by the container.
In code it should look something like this:
std::list<ClipEntry*> m_Clips;
....
void ClipPlayer::RemoveClip( ClipEntry* pClip )
{
m_Clips.remove( pClip );
}
Is your m_Clips really declared as above? I.e., does it store pointers to ClipEntry s?
If it does, you shouldn't need to write a comparison operator for ClipEntry since std::list::remove() would simply compare the pointers in order to find a match. (Referring to you ongoing discussion with Stuart.)
"It's supposed to be hard, otherwise anybody could do it!" - selfquote "High speed never compensates for wrong direction!" - unknown
|
|
|
|
|
thanks Roger Stoltz for reply
now problem is solved
|
|
|
|
|
You want std::list::remove, not std::list::erase.
m_Clips.remove(*pClip);
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
when i use m_Clips.remove(*pClip);
then i got error
'operator==' not implemented in type 'ClipEntry' for arguments of the same type
while i already implement the operator== like this
bool ClipEntry::operator ==(const ClipEntry &r)
{
if(m_tOffset != r.m_tOffset) return 0;
if(m_pGraph != r.m_pGraph) return 0;
if(m_pSinkFilter != r.m_pSinkFilter) return 0;
if(m_strName != r.m_strName) return 0;
if(m_tStart !=r.m_tStart) return 0;
if(m_tStop != r.m_tStop) return 0;
if(m_bPrimed != r.m_bPrimed) return 0;
return 1;
}
then what should i do for this
|
|
|
|
|
bool ClipEntry::operator ==(const ClipEntry &r)
should be
bool ClipEntry::operator ==(const ClipEntry &r) const
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
thanks Stuart Dootson
now problem is solved
|
|
|
|
|
Hallo! I am desperatly in need of examples of a source code that shows the opc(ole for process control)communication written in c++
modified on Friday, May 8, 2009 3:54 AM
|
|
|
|
|
Hi all,
I have an Application in which i am recovering Images from some devices.
now i want to display these image in vc++ application in such manner that when i recover an image then i save this image in a "Temp" folder, then i need to display this image into any list ctrl and then delete it, again i recover a image i save it it and display it and so on but i dont have any idea how to display image like this .
please help
thanking you
|
|
|
|
|
|
You can use of CImage class for save and display images/you can use of a ImageList for clitctrl for show these images on the list for make a folder you can use of CreateDirectory .
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
Hi
Facing a problem friends.... plz help
I have a windows application with several executable and Dll's, and I am trying to make an installer to packge them all together and generate a Setup program.
For this I am using Setup and Deployment project of MSVC 2005. The Installer I am making is working perfectly except It cannot create a desktop shortcut Icon and add a shortcut to the users program menu.
The project has an option to select the short cut, but it only allows you to select the folder where the shorcut is and not the executable file for which you want to make the shortcut
How do I select the executable file for which I want to make adesktop short cut and Icon ?
Thanx in advance
Plz Help
|
|
|
|