Click here to Skip to main content
15,895,084 members
Everything / Docview

Docview

docview

All Articles

Sort by Score

Docview 

2 Mar 2013 by Jochen Arndt
See Multithreading: Programming Tips[^] in the MSDN.You did not tell us about your CMegaDoc class. If it is derived from CDocument or contains window handles, and calling member functions from the thread that access window handles, there will be assertions:Access to a window from a...
22 Mar 2010 by Sonda Brown
I am looking for an adaptive device that will help my client write a book. He is diagnosed with cerebral palsy and can not use his hands or feet and has difficulty with his speech. He would like to write a book. Just wondering is there anything out there for him to use his eyes?
22 Mar 2010 by Austin Cherry
Might be worth looking into Neural Impulse Actuator. Here's a old video of a prototype from a long time ago.
22 Mar 2010 by William Winner
see here Total control of a computer through eye movement[^]
19 Mar 2011 by santosh dhanawade
Hi all, i'm separating codes of my main project into small small dlls project for maintainance.concept working greate for small functions but main problem arises when big functions comes.because in such functions there are 26 or more variables of documents object are required to...
5 Oct 2012 by CodeHead
I ported over an SDI app from VS6.0 to VS2008. For the life of me I can not get my title bar icons to show up, (system menu icon, minimize, maximize, close).I tried over-riding PreCreateWindow with:cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE | WS_THICKFRAME | WS_SYSMENU |...
27 Nov 2017 by srikaracharya
We are building a document management system in ASP.NET. This application should support document (office documents, PDF and TIFF) viewing and editing on line (in the browser itself). We are looking for a third party component which offers these services. The API/SDK should not use any ActiveX...
3 Jun 2013 by Abhinav S
You can explore iTextSharp[^] for PDF editing.
6 Apr 2014 by the vacuum
I'm developing an image viewer application based on MFC MDI architecture. In my application have two views(one derived from CView and another from CFormview) added using CMultiDocTemplate and one document by which both the views share data from same document object. The first view(CView) is...
3 Mar 2013 by louisejackie
Hi, I've got a problem in passing a Doc pointer to my thread function.It worked like this: CMegaDoc::OnStartProcess(){ AfxBeginThread(ThreadProcess,(LPVOID)this);} CMegaDoc::OnOpenDocument(filename){ ReadFile(filename);// I'm quite sure there is no problem in this...