Will there be any difference in the image buffer size if it
is loaded in from CString to LPTSTR using GetBuffer()?
lptstr = string.GetBuffer(0);
Answers were Sorted based on User's Feedback
Answer / prashant
No there wont be any difference. Infact the first method is
preffered
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / abn reddy
use like this,
int nLen = string.GetLenght();
lptstr = string.GetBuffer(nLen);
| Is This Answer Correct ? | 0 Yes | 1 No |
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
Why not virtual functions to handle messages?
What is the base class for MFC Framework ?
How can update edit control data of an executing application from other application?
How to update all the views whenver document got updated ?
What is CALLBACK? How it work? what is the advantage of CALLBACK, please explain with an example
What is the difference between Struts and JSF? Pls list some most suitable differences.
1)How to load an icon on a button as Dynamically ?
Whats is DDX & DDV in MFC?
how u can move CDC pointer to one line in cview?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?