|
Hello Dercio,
1) To avoid creating unnecessary temporary copy of variable while calling functions.
2) More user friendly method than pointers to get data back from functions. For instance
void GetString( CString& Value )
{
Value = "I've changed the value.";
}
...
CString csString;
GetString( csString );
Regards,
Jijo.
_____________________________________________________
http://weseetips.com[ ^] Visual C++ tips and tricks. Updated daily.
|
|
|
|
|
Dercio wrote: why do we sometimes need to pass by reference, a parameter of a function
I will answer that question for you if you will answer my question.
Q: Why do people sometimes need to ask questions in internet forums for which there are massive amounts of existing information on the internet and in books which they could choose to read?
|
|
|
|
|
Passing by reference is the sissy's way to pass a pointer.
--The Klingon Programmer
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]
|
|
|
|
|
Then what about reference to pointers? It's still sissy?
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
It's sissy's silly.
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]
|
|
|
|
|
Hi All,
I need the sample code for drag and drop between ListBox.
Pls help me........
Regards,
Anitha
|
|
|
|
|
Check Here^[^] Uses OLE.
Without OLE[^]
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
Did you time-warp completely past this?
"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
|
|
|
|
|
I am using PowerPoint automation to display PowerPoint file from my project. But sometimes the PowerPoint file is displaying behind my main application. How can I get the handle of the PowerPoint window from my project?
|
|
|
|
|
You can keep your application behind the ppt by using
this->SetWindowPos(&this->wndBottom,,,,,)
Also to get your ppt window, you can use FindWindow("WindowName",NULL);
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
_Application app;
app.CreateDispatch( "PowerPoint.Application" );
.........
SlideShowSettings m_pptSlideShowSettings;
.........
// Run the slide
m_pptSlideShowSettings.Run();
How can I get the handle of the running slide window?
What will be the "WindowName" name in the function FindWindow("WindowName",NULL);
|
|
|
|
|
Sorry for the typo that's the classname of the applicaiton. If you want to catch using the name displayed on the title bar, you should past it as the second argument.
Open a notepad, minimize it. Then run the below code:
HWND h = FindWindow(NULL,"Notepad");
ShowWindow(h,SW_MAXIMIZE);
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
Hi,
I would like to make a customized combobox.
My requirement is this: i want to add images beside the text in the combobox.For Example, combobox should contain list of countrynames and their flags image..
hope am making it clear.. if not, please click the following link for sample application
http://www.codeguru.com/cpp/controls/combobox/colourpickers/article.php/c1793[^]
Thanks,
Rakesh S
|
|
|
|
|
Understood your requirement, now what needs to be done?? now that you have got an sample project what are you waiting for?
|
|
|
|
|
They are actually adding an image like RGB values by using COLORREF..
Now my images are in my computer. what class should be called for to add those images in that RGB position?
Rakesh S
|
|
|
|
|
Check here[^]
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|
|
Hi,
Its given for list control.. will it work if i just change it as combobox?
i am new to VC++.. please clarify it..
thanks,
rakesh s
|
|
|
|
|
Hello,
I have a project without document-view architecture. I added a (TableF)childframe derived from CMDIChildWnd and a (HeadView) childview derived from CView which is a member of childframe. When I execute, the childframe that is the window is been made properly with the view but the window gives debug assertion error while closing.
class TableF : public CMDIChildWnd
{
DECLARE_DYNCREATE(TableF)
protected:
TableF();
protected:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual ~TableF();
HeadView Heading ;
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
};
class HeadView : public CView
{
//protected:
public:
HeadView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(HeadView)
public:
//Operations
public:
virtual void OnInitialUpdate();
//protected:
public :
virtual void OnDraw(CDC* pDC); // overridden to draw this view
public :
virtual ~HeadView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
}
The above are the view and frame classes.
|
|
|
|
|
To get better help, I strongly suggest you to read here before posting.
prithaa wrote: but the window gives debug assertion error while closing
Usually the error messages are quite informative: you should probably post the whole error message. Moreover it is a good idea to mark for us, in your code, the asserting line.
You should properly post code snippets using the code block button.
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]
|
|
|
|
|
Hello,
class TableF : public CMDIChildWnd
{
DECLARE_DYNCREATE(TableF)
protected:
TableF();
protected:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual ~TableF();
HeadView Heading ;
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
};
class HeadView : public CView
{
public:
HeadView();
DECLARE_DYNCREATE(HeadView)
public:
public:
virtual void OnInitialUpdate();
public :
virtual void OnDraw(CDC* pDC);
public :
virtual ~HeadView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
}
I am getting the error
Debug Assertion failed
Expression : CrtIsValidHeapPointer(pUserData)
Prithaa
|
|
|
|
|
Hello,
I have a project without document-view architecture. And I wanted to ask if ChildView member of the Childframe can be derived from CView.I am deriving a childview from CView and this childview is a member of childframe . When I execute the window is opened but while closing I am getting the above error.
Thanks for your reply
Pritha
|
|
|
|
|
I have an MDI app with a docking property pane using CMFCPropertyGridCtrl. The property pane is updated with document and multiple modeless dialog property data using OnSetFocus() to populate the appropriate data depending on which document or dialog has the focus.
The problem is if I have the focus on a dialog with a document also open and want to change a property by selecting the property pane the focus is changed to the document first thus changing the property pane data to the document data.
Basically what is happening is whenever the main frame (i.e. docking pane) is selected the last document view also receives the focus (first). Is there any way to prevent the document view from receiving the focus when the docking property pane is selected?
Thanks
JC
|
|
|
|
|
WAVEFORMATEX structure is said to replace the old WAVEFORMAT structure. With WAVEFORMATEX for waveInOpen , the Subchunk1Size is set as 18 somewhere by the API ( ? ). And it is treated as non-PCM when Subchunk1Size is not 16. How to set the value of Subchunk1Size to 16 when I am creating a wav file? Thanks.
Reference: WAVE PCM soundfile format [^]
Maxwell Chen
|
|
|
|
|
I have a very basic MFC Dialog Program and a Stack ADT.... My Question is where can i declare an instance of the Stack ADT in the GUI Program so that i can manipulate the members inside with the button clicks....
Thanks in Advance...
|
|
|
|
|
GUI Programming is not for the aliens. They still have classes & objects. Your STACK-ADT is just another class. So your dialog class is just going to "use" that class or "contain" an object of that class.
<br />
1.Open up the solution explorer, <br />
<br />
2.Select the headers folder, <br />
<br />
3.right click, add-existing-items, add your "Stack-ADT" header, <br />
the same way for the cpp files into the "source" folder.<br />
<br />
4.Include "stac-adt.h" in to your Dialog class (Your "GUI").<br />
<br />
5.Now everything's ready for use. <br />
<br />
6.You may create the stack object inside your dialog class, <br />
may be it a member or a temp object inside a function. <br />
<br />
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
|
|
|
|