|
Unable to set cursor & focus in edit box (CEdit) Hi, I have an edit box for which I am using a class which is inheriting from CEdit for overriding PreTranslateMessage. I am intercepting Ctrl+K from this class. when this key is pressed, it posts a message to the dialog. As a result of this key press the whole text in the edit box is changed. Now, I am tr... 24 Jun 2008 10:15
Include path - "Directories containing the source file" http://msdn.microsoft.com/en-us/library/73f9s62w(VS.80).aspx According to that doc, "Directories containing the source file" is the first place VC++ will look for source. Trouble is, I'm trying to Unit Test a class, and I want to mock out the classes it uses. They're in the same directory as it is, so VC++ mer... 23 Jun 2008 12:44
True Type vs Post Script We need to implement "Open Type" which I assume has both True Type and Post Script information. Will calling the native Windows API work correctly. eg: GetGlyphOutline What are the gotchas if any. -lou ... 24 Jun 2008 01:04
Warning In C++ Microsoft Visual Studio Hello , I am running a maximum flow algorithm in C. it works fine on small graph , but when i increase the number of nodes in the graph to say 13000 , it gives me a warning : " Image size exceeded ( image may not run ) " . and does give me a result. Is there a way around this ? Sincerely Arush. ... 23 Jun 2008 15:50
does not contain debug information. Press OK to Continue Hi, I am trying to port one of my VC++ 6.0 32 bit windows application to Windows XP 64 bit os. This application runs perfectly on windows xp 32bit os without any problem. I used Windows XP 64 bit build environment (Debug) from PSDK for windows 2003 R2 to port my application, and created the suitable config... 25 Jun 2008 06:46
boost/multi_index_container.hpp in vc6 sp5 i need a mulit-indexed container, but even doing a simple... _________________________________________ #include <boost/multi_index_container.hpp> _________________________________________ ....produces the following error:... _________________________________________ g:\prog\boost\boost_1_35_0\boost\detail\a... 23 Jun 2008 15:50
Help is restoring MS exchange 2003 programmatically? Hi all I am trying to take exchange server 2003 backup and restore programmatically. I am using Visual C++ for coding. My backup function works fine. But i am in problem in restoring database. My HrESERestoreAddDatabase is not working well. The HrESERestoreAddDatabase is returning HRESULT -939587631. Will anyone ... 22 Jun 2008 11:11
VC++ DLL Debug Hi! I've done an Application in VB6 calling functions of a Visual C++ 98 DLL; I've got the source code of this DLL. How can I enter in DLL function during debug? I'd like to debug also DLL Funcions, from their calls in VB6 code. Thanx for you suggestions. ... 21 Jun 2008 12:46
Abstract classes, multiple inheritance, and implemention question Hi, I have 2 abstract structs as follows: struct s1 { virtual void f1() = 0; virtual void f2() = 0; }; struct s2 : public s1{ virtual void f3() = 0; }; I also have 2 implementation classes: class s1imp : pubic s1 { virtual void f1() {} virtual void f2() {} }; class s2imp : ... 21 Jun 2008 18:54
Child Window Hi all, I have two handles which are VB window (Parent) and VC window (Dialog) in VC window. Now, I need to make Child window is on top of Parent always. I called SetParent API in OnInitDialog of VC Window. But, sometimes parent is not with child. How to do it? Thanks in advance. Regards, Joh... 21 Jun 2008 09:42 |