Originally posted by: romberg
In my app(a SDI app),I splitted a view into two,the view derived from CRichEditView.And when I try to Drag and drop a file into one of the two views,I can't catch the EN_DROPFILES message, so I can't execute my operation.who can help me.thanks.
ReplyOriginally posted by: Nitin Dubey
here we have putted a CEditView on a window, can we put a PropertyPage on the window.
Originally posted by: The Black Knight
I like what was done here with the multiple views, but let's say I don't want to lose the present view. I just want to lay another view on top of the previous view. In another words, I wanna show 2 views at the same time, without using a split window. Is that possible?
ReplyOriginally posted by: ZHANG XIAO
Great work.
When run the program,if you resize the "Startup" toolbar of the system,the program will be exit.
??????????
I want to lean something to help my job
ReplyOriginally posted by: Vladimir Ganopa
In SdiMulti demo project I made one more accelerator table with IDR_NEWVIEW and insert accelerator Ctrl+L for ID_FILE_OPEN command.
But it seems that accelerator table switching does not work. After view switching menu items appear with the old accelerator labels and Ctrl+L comdination does nothing.
Is anybody have the solution of this problem?
Originally posted by: Michael B. Pliam
When running a debug version in VCPP 5.0, I encounter an output message "Warning: Dialog creation failed!". I have not seen this message before and do not know what it means.
Has anyone else encountered this message? If so, are there any problems associated with it?
I create a program as Notepad in Visual C++ 6. But i cant open another file txt. please help me resolving problem. I thank so much. Im sorry, my Enlish is not good
ReplyOriginally posted by: a.m.sharfudeen
As many prigrammers have posed this question in code guru
I think the following simple code might prove useful to them
on u r view's button handler
get a pointer to u r mainframe wnd like this
CMainframe *frame=(CMainframe *)AfxGetMainWnd();
frame->switchview(10);
so u have to define a finction that takes the views id as its argument in the mainframe class
void CMainFrm::switchview(int viewid)
{
switch(viewid)
case 10:
break;
;;; do all the required processing
}
so from any view to can navigate all the views only the argument to the switchview function changes
Originally posted by: hanyunjun
Will you please send me the new version with Destroy/Create view? Thanks.!
Originally posted by: StormCloud
this is the only that I wanted.
Originally posted by: Karen Gamble
Is it possible to have an odd number of panes? I need two Trees on the left and a single ListReport on the right that is the height of both the trees?
Reply