|
Yeah Sorry for posting at two places.
But the code that was to be implemented is not returning an image, as I implemented that in my code.
So I just wrote it as a new question instead revising the old one.
Thanks!
|
|
|
|
|
toms from newdelhi wrote: So I just wrote it as a new question instead revising the old one. On the contrary, you posted the same question in this forum and in Q&A. Common sense should tell you that is the wrong thing to do, but if you still don't understand then read http://www.codeproject.com/Messages/2922875/HOW-TO-ASK-A-QUESTION.aspx[^], especially point 1.
Use the best guess
|
|
|
|
|
Hi
I'm new in DirectShow programming, and after more than week of reading a lot and trying to understand some of the concepts, without a luck I'm asking my question:
I used the filter EZRGB24 from Microsoft SDK and changed it according to my need and checked it out with graphedit to see it works.
Now I need to use this filter in my code.
1. How can I use some filters in row?
2. Can I use the buffers of the last filter in my code? I don't need to save the stream or display it.
Thank you,
Moshiko
|
|
|
|
|
How to build 64 bit application on visual studio 2003?
|
|
|
|
|
|
VS 2003 does not support the 64-bit compiler out of the box.
You can however, install the latest Microsoft SDK and use the 64-bit compiler that comes along with it.
But it is recommended to go for VS2005, which supports building 64-bit applications out of the box.
|
|
|
|
|
Thank you Superman for valuable information.
|
|
|
|
|
Hello ,
I am Lakshmanan, a new to MFC.
I have created a multilanguage supported application in mfc.
The below problem occurs in SImplfied and Traditional Chineese localization only
I Have created a dialog having Textbox, buttons , radiobutton and check boxes.
When Displaying the dialog box for the first time, the text inside the button control is not visible fully.
Alignment set in the button control property is Default.
But, on closing the dialog box and opening it again causes the text to be visible clearly and fully.
Also, if the check box state is changed (From Checked to Unchecked), the text inside button is clearly and fully visible.
Also on tab change, (means getting focus to button), the text inside button is getting clearly and fully visible.
Anyone please help me to sort out the problem.
Thanks in advance.
Regards,
Lakshmanan
|
|
|
|
|
I didnot know what happen. Does you project set as Unicode. Or you system have the suitable Chinese Font?
If you can get screen image, perhaps I can help you.
|
|
|
|
|
Hello Mr. yu-jian,
Thanks for your Quick reply.
The Project is Set to Multibyte Character Set.
I have Installed Language Packs for chinese (both traditional and simplified)
Thanks
Lakshmanan
|
|
|
|
|
Hi, You should set this project as UNICODE type. In China, we use the Multibyte Character Set only when we develop the English version software.
|
|
|
|
|
It is not clear to me if this problem happens with the Button, RadioButton or CheckBox controls or if it happens with all of the controls?
Soren Madsen
"When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty
|
|
|
|
|
Is there an equivalent of the system() C function in MFC?
36. When you surround an army, leave an outlet free.
...
Do not press a desperate foe too hard.
SUN-TZU - Art of War
|
|
|
|
|
system does exist in VS2003+ libraries - I cant remember the details but its http://msdn.microsoft.com/en-us/library/277bwbdz(v=vs.80).aspx[^]
try using
::system(command);
that being said, I'd use CreateProcess API instead - it give much more control .. as for the 'MFC' part of your question, MFC is just a higher order level of classes/abstractions anyway
|
|
|
|
|
Or perhaps ShellExecute.
Steve
|
|
|
|
|
gawd - getting old (just turned 0x30) - memory slipping, lining up spot on park bench
'forgot that one'
ta
|
|
|
|
|
|
Well there is this[^], but it has nothing to do with MFC.
|
|
|
|
|
Yep, Richard is completely correct, the system call has nothing to do with MFC. +5
|
|
|
|
|
what is the importance of virtual and pure virtual fuctions?
|
|
|
|
|
|
They allow polymorphism, where derived classes can provide different behavior for the same function calls.
For example, a Shape class can have a virtual getArea () method.
Derived classes (like Circle, Square, etc...) will provide different implementations of getArea (), which use different formulas for the area calculation. Thus, you can call getArea () on a Shape object, regardless of which concrete derived class it represents, and you'll get the correct area.
|
|
|
|
|
Yes. you are right.Using these functionality in c++ we can make good code design also.
|
|
|
|
|
Try here.
"One man's wage rise is another man's price increase." - Harold Wilson
"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
"Show me a community that obeys the Ten Commandments and I'll show you a less crowded prison system." - Anonymous
|
|
|
|
|
Jackkrishjk wrote: what is the importance of virtual and pure virtual fuctions?
VERY important.
Nihil obstat
|
|
|
|