MDI Document taskbar thumbnails with no decorations
Is it possible to remove the close window decoration from an mdi document taskbar flyout window? That is, remove the red "x" to prevent the user from closing the document via the taskbar. ...
Is it possible to remove the close window decoration from an mdi document taskbar flyout window? That is, remove the red "x" to prevent the user from closing the document via the taskbar. ...
Hi, I am trying to build an old version of an application which consists of VC++ projects that were written in Visual Studio 2003. My OS is Windows 7 Enterprise (64-bit). When I try and build the solution I get the following errors: error C4772: #import referenced a type from a missing type library; '__missing_type__' used as a pla...
I am receiving this error >GXRenderManager.obj : error LNK2001: unresolved external symbol "private: static class GXRenderer * GXRenderManager::renderDevice" (?renderDevice@GXRenderManager@@0PAVGXRenderer@@A) The following is my code... GXDX.h class GXDX: public GXRenderer { public: void Render(); void StartUp(); }; GXGL....
I want to turn a screen shot from the clipboard into a array data (Red/Green/Blue) in my program. so i guess it's as simple as that. but i don't want to use anything else then the print screen and clipboard if i can? anyway any questions just ask. ...
I am using a CRichEditCtrl object. Now when I select any text, the selection is highlighted in Blue Colour. However I need the selection to be highlighted in Black Colour. I have tried the SetSelectionCharFormat, but it only seems to be changing the colour of the selected part when the code is executed. However when I select the te...
I checked out a post similar to this but the linkage was different the issue was never resolved. The problem with mine is that for some reason the linker is expecting there to be a definition for the base class, but the base class is just a interface. Below is the error in it's entirety c:\users\numerical25\desktop\intro todirectx\godfi...
I am trying to address this issues because I can not seem to find a good resource online that does so. I do not fully understand the issue cause I never got it resolved so I will try to describe it as best as possible. Awhile ago I had an issue where headers were being ignored because "They were called once already and therefore when ...
I created a VC++ console project with Visual Studio and it auto-generated this function: int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) { ... } I was just wondering what envp stands for and how/when I can/should use it? Thank you! ...
What is the difference between COM and DCOM ? ...
OK, this may sound weird, but here goes. There are 2 computers, A (Pentium D) and B (Quad Core) with almost the same amount of RAM running Windows XP. If I run the same code on both computers, the allocated private bytes in A never goes down resulting in a crash later on. In B it looks like the private bytes is constantly deallocated a...
I am planning to get some good book for Windows Socket Programming in VC++. I have 2+ years of experience in working with VC++/ATL/COM/MFC; but not in the networking domain. I have been doing some search in Google for "Windows network programming" books. There are few but they have both good and bad comments scattered all over; and I am...
I spot some interesting articles about exception handle in CodeProject http://www.codeproject.com/KB/cpp/seexception.aspx After reading, I decided to do some experiment. The first time I try to execute the following code char *p; p[0] = 0; The program died without question. But After several times when I executed the same proble...
Hi, what is the difference between CreateProcess and CreateProcessA, also are there any alternatives to these in VC++ 2008 ? I have also a problem, that i use the CreateProcessA function, this works well in one system but fails in other systems. Also when i use CreateProcess i get the error cannot convert 2 parameter from 'CHAR[40]' to...
I am using Visual Studio 2008 to create a dll. But cannot find the corresponding .lib file. Why? I need that file to put it into my tester. ...
Hi All, [Application & code back ground] I have an MFC application which is executing on Windows Server 2008 R2 in WOW64 environment. In which on user input it defragments the selected drive on the disk. I initiated the process(.i.e. cmd /c defrag –v c:) of defragmentation using the CreateProcess() API, along with this to display output...
I'm wondering what the Stack Overflow community thinks when it comes to creating a project (thinking primarily c++ here) with a unicode or a multi-byte character set. Are there pros to going Unicode straight from the start, implying all your strings will be in wide format? Are there performance issues / larger memory requirements becau...
I've written the following simple program: #include "stdafx.h" #include <gflags/gflags.h> #include <glog/logging.h> #include <ostream> int _tmain(int argc, char* argv[]) { google::InitGoogleLogging(argv[0]); LOG(INFO) << "Found"; return 0; } I checked out google-glog from here: http://code.google.com/p/google-glog/sourc...
I tried #error MY_DEFINE But all that did is echo "MY_DEFINE" when it threw the error. Thanks! ...
i am doing project on hand written recognition systems.i need help where to start....... ...
Hello, I have some native code which generates native XML node of MSXML. I need that root node in C++/CLI to be use as XMLTextWriter or in any form of XML in C++/CLI. Is there any interop available for MSXML Node for using in C++/CLI. Regards Usman ...