User vividos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:54:26Z http://stackoverflow.com/feeds/user/23740 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1658620/why-is-my-owner-drawn-combobox-shown-empty 1 Why is my owner-drawn combobox shown empty? vividos 2009-11-01T22:35:51Z 2009-11-13T00:54:52Z <p>I'm subclassing a WTL combobox and I'm owner-drawing the items of the combobox. The control has the attributes <code>CBS_DROPDOWNLIST | CBS_HASSTRINGS | CBS_OWNERDRAWVARIABLE</code> and I'm using the mix-in class COwnerDraw to implement DrawItem() and MeasureItem(). When the drop down list is down, the items are drawn correctly. However when the drop down list is up, the combobox control is empty and the item isn't drawn. What am I doing wrong?</p> <p>The WTL class looks like this:</p> <pre><code>class CMyComboBox : public CWindowImpl&lt;CMyComboBox, CComboBox&gt;, public COwnerDraw&lt;CMyComboBox&gt; { public: BEGIN_MSG_MAP_EX(CMyComboBox) CHAIN_MSG_MAP(COwnerDraw&lt;CMyComboBox&gt;) CHAIN_MSG_MAP_ALT(COwnerDraw&lt;CMyComboBox&gt;, 1) END_MSG_MAP() void DrawItem(LPDRAWITEMSTRUCT lpDIS) { CDCHandle dc = lpDIS-&gt;hDC; dc.FillSolidRect(&amp;lpDIS-&gt;rcItem, lpDIS-&gt;itemID == 0 ? RGB(255,0,0) : RGB(0,255,0)); } void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct) { lpMeasureItemStruct-&gt;itemWidth = 12; lpMeasureItemStruct-&gt;itemHeight = 12; } }; </code></pre> <p>The class is used on a dialog and is subclassed like this:</p> <pre><code> m_cbMy.SubclassWindow(GetDlgItem(IDC_COMBO1)); m_cbMy.AddString(_T("Item 1")); m_cbMy.AddString(_T("Item 2")); </code></pre> <p>Changing the control attributes to <code>CBS_OWNERDRAWFIXED</code> doesn't change anything.</p> <p><hr></p> <p>Edit: Thanks to the help of najmeddine I figured out that I have to handle WM_PAINT to draw the actual combobox, and not only the items in the drop-down list. Unfortunately now I have to also draw the combobox control all by myself. Is there a way to let the GDI draw the border and drop arrow so that I only have to draw the "insides" of the control?</p> http://stackoverflow.com/questions/1612546/how-to-fix-com-outproc-server-initializing-error-0x80004015 0 How to fix COM outproc server initializing error 0x80004015? vividos 2009-10-23T10:20:44Z 2009-10-23T10:46:32Z <p>I have a COM outproc server written in ATL that registers itself using</p> <pre><code>_Module.RegisterClassObjects(CLSCTX_LOCAL_SERVER, REGCLS_SINGLEUSE) </code></pre> <p>and it results in an HRESULT error code 0x80004015 (which means CO_E_WRONG_SERVER_IDENTITY). What causes this error code, and how can I work around this error?</p> http://stackoverflow.com/questions/1497435/how-to-apply-a-msi-transform-at-uninstall 0 How to apply a Msi transform at uninstall? vividos 2009-09-30T11:03:51Z 2009-09-30T13:46:39Z <p>I'm trying to fix a Windows Installer based setup that is already released. The fix is for an error that occurs when uninstalling the package. For this I'd like to provide a .mst transform file that is applied before uninstalling. Is it possible to use a transform after the product was installed? Or can the transform be applied to an already installed .msi file before the uninstall is started? The command line I used was like this:</p> <pre><code>msiexec.exe /x {Product-Code} TRANSFORMS={Path-To}\bugfix.mst </code></pre> http://stackoverflow.com/questions/1465424/how-to-prevent-msi-error-2335-when-modifying-installed-product 0 How to prevent msi error 2335 when modifying installed product? vividos 2009-09-23T11:31:37Z 2009-09-23T11:31:37Z <p>I'm creating a msi based installer (using InstallShield) that has a custom action to start a nested install. The custom action is of type 23, the Source field refers to the second msi that is located on the source media, and the Target field contains "ALLUSERS=[ALLUSERS] ADDLOCAL=ALL". The custom action is started in InstallExecuteSequence after the OnInstallFilesActionAfter action, with a condition &amp;FEATURE=3 so that it gets installed when a certain feature is installed.</p> <p>When doing a fresh install, the custom action gets executed and the second msi is properly installed. When installing without the mentioned feature and doing a "Modify" install afterwards, where the feature is selected, the msi error 2335 appears. The error is shown during the PublishProduct action of the second msi, and the exact error message is "DEBUG: Error 2335: Path: C:\WINDOWS\Installer\ is not a parent of {local-setup-folder}" (where {local-setup-folder} is replaced with the folder where the second msi resides on install).</p> <p>I guess that the error comes from the fact that when running a "Modify" the source folder for the action 23 is set to the folder of the cached .msi file, and not the folder where the product was installed initially. How can I prevent error 2335 from appearing?</p> http://stackoverflow.com/questions/1464711/how-to-detect-if-errnot-is-defined 0 How to detect if errno_t is defined? vividos 2009-09-23T08:29:46Z 2009-09-23T08:56:10Z <p>I'm compiling code using gcc that comes from Visual C++ 2008. The code is using errno_t, but in some versions of gcc headers including <code>&lt;errno.h&gt;</code> doesn't define the type. How do I detect if the type is defined? Is there a define that signals that the type was defined? In the case it isn't defined I'd like to provide the typedef to let the code compile correctly on all platforms.</p> http://stackoverflow.com/questions/1442762/challenge-working-with-visual-studio-and-vc/1442849#1442849 2 Answer by vividos for Challenge working with Visual Studio and VC++ ? vividos 2009-09-18T06:24:31Z 2009-09-18T06:24:31Z <p>I learned using Visual Studio IDE and MFC using the Scribble Tutorial. It was a step-by-step tutorial creating a simple MFC application. Unfortunately the tutorial was written for Visual Studio 6.0, and in the meantime almost all wizards and menus changed, so it's not applicable anymore.</p> <p>The tutorial can be found in MSDN, here, though: <a href="http://msdn.microsoft.com/en-us/library/aa716528%28VS.60%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa716528(VS.60).aspx</a></p> <p>The scribble sample source for Visual Studio 2008 can be found here: <a href="http://msdn.microsoft.com/en-us/library/f35t8fts.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/f35t8fts.aspx</a></p> http://stackoverflow.com/questions/440585/building-boost-bcp/440653#440653 11 Answer by vividos for Building boost bcp vividos 2009-01-13T20:24:59Z 2009-09-16T07:43:29Z <p>First, you need to have the proper PATH, INCLUDE and LIB environment variables in your command shell. For this, call the file "<code>vcvarsall.bat</code>" (or similar) with parameter:</p> <pre><code>vcvarsall.bat x86 </code></pre> <p>Next you have to build bjam (you can also download it from the Boost page, but it's almost as quick). Go to the <code>tools\jam\src</code> folder in Boost and type:</p> <pre><code>build.bat </code></pre> <p>It should produce a subfolder <code>bin.ntx86</code> that contains bjam.exe. For convenience, copy it to the Boost main folder. Next, you can build bcp. Go into the <code>tools\bcp</code> folder and type:</p> <pre><code>..\..\bjam.exe --toolset=msvc </code></pre> <p>Back in the Boost main folder you can then build any library you wish:</p> <pre><code>bjam toolset=msvc –with-{library} </code></pre> <p>where <code>{library}</code> is one of the libraries to build. All buildable libraries can be shown with:</p> <pre><code>bjam –show-libraries </code></pre> <p>There are many more bjam build parameters. Some parameters with keywords you can specify are:</p> <pre><code>variant=debug|release link=shared|static threading=multi|single </code></pre> <p>An example would be:</p> <pre><code>bjam toolset=msvc –with-filesystem threading=multi variant=debug stage </code></pre> <p>For more infos, visit the <a href="http://www.boost.org/doc/libs" rel="nofollow">Boost documentation pages</a>.</p> <p>Edit: Updated link to point to most recent Boost documentation</p> http://stackoverflow.com/questions/472476/why-does-my-service-crash-at-debugbreak-on-vista 1 Why does my Service crash at DebugBreak() on Vista? vividos 2009-01-23T10:32:02Z 2009-07-14T06:18:35Z <p>I'm writing a Win32 service in C++. I have a custom Assert macro that calls DebugBreak() (among other things). When I'm running my service under Vista, the service crashes when reaching the DebugBreak() call (an int 3 assembler opcode), showing the vista crash dialog. The error code is 80000003 (hardcoded breakpoint).</p> <p>Normally I'm expecting that my service runs over the DebugBreak() call without doing anyting when no debugger is attached. Why is it crashing? Is there a possible setting to change so that it continues to run?</p> http://stackoverflow.com/questions/972681/how-to-correctly-uninstall-a-running-windows-mobile-today-screen-plugin 1 How to correctly uninstall a running Windows Mobile today screen plugin? vividos 2009-06-09T21:47:23Z 2009-06-09T22:37:58Z <p>I'm creating a cab installer for a today screen plugin for windows mobile. When the user activates the today screen plugin it is loaded by the shell. When the user now uninstalls the plugin, a message appears that the device should be reset.</p> <p>How do I correctly uninstall the today screen plugin from the device? Maybe waiting for an "unload" of the dll once the registry keys for the today screen plugin are removed? A custom setup.dll?</p> http://stackoverflow.com/questions/968756/how-to-generate-a-guid-in-vbscript 2 How to generate a GUID in VBScript? vividos 2009-06-09T08:02:40Z 2009-06-09T08:12:16Z <p>I want to generate GUID strings in VBScript. I know that there's no built-in function in VBScript for generating one. I don't want to use random-generated GUIDs. Maybe there is an ActiveX object that can be created using CreateObject() that is sure to be installed on (newer) Windows versions that can generate a GUID?</p> http://stackoverflow.com/questions/281139/how-do-i-keep-a-windows-mobile-professional-device-in-the-unattended-power-state/917736#917736 0 Answer by vividos for How do I keep a Windows Mobile Professional Device in the Unattended Power State vividos 2009-05-27T19:57:54Z 2009-05-27T19:57:54Z <p>Maybe the answer to this SO question is of help: <a href="http://stackoverflow.com/questions/336771/how-can-i-run-code-on-windows-mobile-while-being-suspended">How can I run code on Windows Mobile while being suspended?</a> It uses the "unattended" mode to keep the application running with screen switched off.</p> http://stackoverflow.com/questions/873816/keep-windows-mobile-app-running-in-standby-mode/917727#917727 0 Answer by vividos for Keep Windows Mobile App running in standby mode vividos 2009-05-27T19:56:45Z 2009-05-27T19:56:45Z <p>Maybe the answer to this SO question is of help: <a href="http://stackoverflow.com/questions/336771/how-can-i-run-code-on-windows-mobile-while-being-suspended">How can I run code on Windows Mobile while being suspended?</a> It uses the "unattended" mode to keep the application running with screen switched off.</p> http://stackoverflow.com/questions/586683/how-can-i-detect-suspend-on-windows-mobile/917708#917708 0 Answer by vividos for How can I detect suspend on Windows Mobile? vividos 2009-05-27T19:54:32Z 2009-05-27T19:54:32Z <p>Maybe the answer to this SO question is of help: <a href="http://stackoverflow.com/questions/336771/how-can-i-run-code-on-windows-mobile-while-being-suspended">How can I run code on Windows Mobile while being suspended?</a></p> http://stackoverflow.com/questions/336771/how-can-i-run-code-on-windows-mobile-while-being-suspended 0 How can I run code on Windows Mobile while being suspended? vividos 2008-12-03T10:39:52Z 2009-05-27T19:52:17Z <p>I'd like to run some C++ code while the Windows Mobile PocketPC is (or seems) being suspended. An example what I mean is the HTC Home plugin that shows (among others) a tab where the HTC Audio Manager can be used to play back mp3 files. When I press the on/off button, the display goes black, but the audio keeps playing. The only button to switch back on is the on/off button, as expected.</p> <p>What I tried so far is to capture hardware button presses (works) and switch off the video display (works). What doesn't work with this approach is that when (accidentally) pressing any key on the device, the video display is switched on. I think this isn't the approach taken in the HTC Audio Manager.</p> <p>I'm guessing on some low-level API magic for this to work, or that the code to play back audio runs at some interrupt level, or the device goes into a different suspend mode.</p> http://stackoverflow.com/questions/336771/how-can-i-run-code-on-windows-mobile-while-being-suspended/917695#917695 2 Answer by vividos for How can I run code on Windows Mobile while being suspended? vividos 2009-05-27T19:52:17Z 2009-05-27T19:52:17Z <p>I found sourcecode on the <a href="http://forum.xda-developers.com/archive/index.php/t-379366.html" rel="nofollow">xda-developers forum</a> that explains what to do, and it works as thought. The main points are:</p> <ul> <li>Set the device to send a notification when going into "unattended" mode. This is done with <code>PowerPolicyNotify(PPN_UNATTENDEDMODE, TRUE)</code></li> <li>For every device that you need during unattended mode, call <code>SetPowerRequirement(L"gpd0:", D0, POWER_NAME|POWER_FORCE, NULL, NULL)</code>; The "gpd0:" device is the GPS Intermediate driver; replace or duplicate call with any device you need, e.g. "wav1:" for audio, "dsk1:" for memory card or "com1:" for serial port 1.</li> <li>Create a message queue and request power notifications using <code>RequestPowerNotifications(hMsgQueue, PBT_POWERINFOCHANGE | PBT_TRANSITION)</code></li> <li>Every time a power notification is sent, the message queue is filled with a struct of type <code>POWER_BROADCAST</code>.</li> <li>Look for <code>PBT_TRANSITION</code> message type. The field <code>pPwrBrodcast-&gt;SystemPowerState</code> then contains a string "unattended" when the device is shut off, e.g. by the user pressing the off button</li> <li>In this transition, just call <code>SystemIdleTimerReset()</code> to tell the device to not shut off</li> <li>Repeat when the transition occurs again</li> <li>When shutting down, call <code>PowerPolicyNotify()</code> to leave unattended mode, release any devices with <code>ReleasePowerRequirement()</code> and stop receiving power notifications with <code>StopPowerNotifications()</code>.</li> </ul> http://stackoverflow.com/questions/859431/what-license-to-use-for-translations-of-open-source-software 0 What license to use for translations of open source software vividos 2009-05-13T17:58:13Z 2009-05-13T18:38:14Z <p>I'm writing an open source software that is licensed under the GPL. Now I'm offering that other users can translate the software, starting from an english translation I made by myself. What license or range of license may be best for translation of text strings, dialogs, etc.? As GPL is a software license, I thought about a Creative Commons license. The goal is so that all translations remain free and may be updated by other translators.</p> http://stackoverflow.com/questions/828442/is-there-a-way-to-compile-time-assert-if-a-variable-is-a-class-struct-or-a-basi/828471#828471 0 Answer by vividos for Is there a way to compile-time assert if a variable is a class, struct or a basic type in c++? vividos 2009-05-06T07:45:09Z 2009-05-06T07:45:09Z <p>If it's only asserting during compile time, you could use <code>BOOST_STATIC_ASSERT</code> and <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/type%5Ftraits/doc/html/index.html" rel="nofollow">Boost.TypeTraits</a> to check if types are suitable. If you want to enable a template for specific types, you may have success using Boost's <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/utility/enable%5Fif.html" rel="nofollow">enable_if</a>.</p> http://stackoverflow.com/questions/751000/how-to-install-program-shortcuts-for-all-users 2 How to install program shortcuts for all users? vividos 2009-04-15T10:02:08Z 2009-04-16T02:49:42Z <p>I'm creating an installer msi file using the Windows Installer XML toolkit. When installing the created msi file, a shortcut placed under the ProgramMenuFolder folder results in a shortcut for the Administrator user only. How do I let the installer create a shortcut under the All Users profile, so that everyone on the machine has the shortcut?</p> http://stackoverflow.com/questions/560396/how-to-replace-nested-installations-on-windows-installer 1 How to replace nested installations on Windows Installer? vividos 2009-02-18T09:37:26Z 2009-03-25T18:22:39Z <p>On this <a href="http://msdn.microsoft.com/en-us/library/aa368010(VS.85).aspx" rel="nofollow">MSDN page</a> it is stated that nested installations (also called concurrent installations) on Windows Installer are deprecated. I'm currently installing a third-party msi with custon action type 23.</p> <p>With what mechanisms can I install a third-party msi without using nested installations? I tried using a custom action of type 34 calling "<code>msiexec.exe /i {.msi-file}</code>" but that fails since multiple installations are not allowed at the same time.</p> <p>Unfortunately there are no merge modules available for the msi's to be installed.</p> http://stackoverflow.com/questions/669989/how-to-implement-process-global-variable-in-c 0 How to implement process-global variable in C++? vividos 2009-03-21T21:00:10Z 2009-03-22T15:07:38Z <p>Normally using a variable in a .cpp file results in the variable being globally available, like this:</p> <pre><code>.h file: extern int myGlobal; void work(); .cpp file: int myGlobal = 42; void work(){ myGlobal++; } </code></pre> <p>When the .cpp file is put in a static library and more than one shared library (DLL) or executable links against the static library, each one has its own copy of <code>myGlobal</code>. work() would modify its own version of the variable.</p> <p>My question now: is there a way to get a process-wide unique variable or pointer to that variable? Similar what thread-local storage would be for thread-wide variables. It doesn't have to be platform independent. Bonus points if it works in Win32 :)</p> http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 2 Answer by vividos for C++: Multiple inheritance + virtual function mess vividos 2009-03-05T20:08:56Z 2009-03-06T21:33:50Z <p>First question, yes, B and C can define <code>fn()</code> as a virtual function. Second, D can of course access <code>B::fn()</code> and <code>C::fn()</code> by using the scope operator :: Third question: D must at least know B and C, since you have to define them on the inheritance list. You can use templates to let the types of B and C open:</p> <pre><code>class A { public: virtual ~A() {} virtual void fn() = 0; }; class B: public A { public: virtual ~B() {} virtual void fn(){ std::cout &lt;&lt; "B::fn()" &lt;&lt; std::endl; } }; class C: public A { public: virtual ~C() {} virtual void fn(){ std::cout &lt;&lt; "C::fn()" &lt;&lt; std::endl; } }; template &lt;typename TypeB, typename TypeC&gt; class D: public TypeB, public TypeC { public: void Do() { static_cast&lt;TypeB*&gt;(this)-&gt;fn(); static_cast&lt;TypeC*&gt;(this)-&gt;fn(); } }; typedef D&lt;B, C&gt; DInst; DInst d; d.Do(); </code></pre> <p>About the wish to automatically enumerate all fn() functions of all classes that D inherits from: I'm not sure if that is possible without resorting to MPL. At least you can extend my example above with versions that deal with 3 and more template parameters, but I guess there is an upper (internal compiler-)limit of number of class template parameters.</p> http://stackoverflow.com/questions/556283/how-do-i-check-if-wscript-cscript-runs-on-x64-host-os 0 How do I check if wscript/cscript runs on x64 host os? vividos 2009-02-17T10:48:45Z 2009-02-17T18:22:23Z <p>I'm running a VBScript that may run under x64 Windows. I need to read a registry key from the 32-bit part of the registry. For that I use path "HKLM\Software\Wow6432Node\xyz" instead of "HKLM\Software\xyz". How can I check if the script is executed under x64?</p> http://stackoverflow.com/questions/503636/how-to-programmatically-open-control-panel 2 How to programmatically open control panel? vividos 2009-02-02T15:40:17Z 2009-02-16T02:46:31Z <p>How do I open a custom control panel programmatically, like custom.cpl? Specifically, how do I open a 64-bit cpl when running as 32-bit application?</p> http://stackoverflow.com/questions/503636/how-to-programmatically-open-control-panel/503670#503670 4 Answer by vividos for How to programmatically open control panel? vividos 2009-02-02T15:49:03Z 2009-02-12T12:55:18Z <p>Since I didn't find a good answer here on SO, here's the solution of my research:</p> <ul> <li>Start a new application "control" that gets the name of the control panel as its first parameter:</li> </ul> <blockquote> <pre><code>::ShellExecute(m_hWnd, NULL, _T("control.exe"), _T("access.cpl"), NULL, SW_SHOW); </code></pre> </blockquote> http://stackoverflow.com/questions/541062/boostasioserialport-reading-after-reconnecting-device/541109#541109 1 Answer by vividos for boost::asio::serial_port reading after reconnecting Device vividos 2009-02-12T12:53:04Z 2009-02-12T12:53:04Z <p>Normally you should get an exception of type <code>boost::system::system_error</code> when <code>read_some</code> cannot ready anymore. Try using <code>read</code> instead, maybe it returns an error and doesn't just return. You could also try the async methods; in this case the handler should get an error object when the device was disconnected.</p> <p>Alterantively you could get the handle to the port using the <code>native()</code> function and call ClearCommError() on that. It might return the error.</p> http://stackoverflow.com/questions/244316/reader-writer-locks-in-c/490770#490770 1 Answer by vividos for Reader/Writer Locks in C++ vividos 2009-01-29T07:29:06Z 2009-01-29T07:29:06Z <p>There is an <a href="http://msdn.microsoft.com/en-us/magazine/cc163405.aspx" rel="nofollow">article</a> about reader-writer locks on MSDN that presents some implementations of them. It also introduces the Slim reader/writer lock, a kernel synchronisation primitive introduced with Vista. There's also a <a href="http://www.codeproject.com/KB/threads/testing_rwlocks.aspx" rel="nofollow">CodeProject article</a> about comparing different implementations (including the MSDN article's ones).</p> http://stackoverflow.com/questions/489293/how-does-one-convert-from-cstring-to-unsigned-char-with-unicode/489518#489518 3 Answer by vividos for How does one convert from CString to unsigned char* with Unicode? vividos 2009-01-28T21:43:25Z 2009-01-28T21:43:25Z <p>This codes snippet may not work when your 'keyName' variable starts to contain characters that are not representable in the ISO-8859-1 encoding. For this I recommend creating a string with UTF-8 as encoding value, convert to UTF-8 byte stream using WideCharToMultiByte using the CP_UTF8 codepage and send out resulting utf8 byte stream.</p> http://stackoverflow.com/questions/456042/how-do-i-perform-a-nonblocking-read-using-asio/460587#460587 0 Answer by vividos for How do I perform a nonblocking read using asio? vividos 2009-01-20T09:33:07Z 2009-01-20T09:33:07Z <p>From Boost.Asio's documentation:</p> <pre><code>boost::asio::ip::tcp::socket socket(io_service); ... boost::asio::socket_base::non_blocking_io command(true); socket.io_control(command); </code></pre> <p>I didn't try it out, but basically that's the was it should work, also on serial port. Maybe even getting number of bytes works:</p> <pre><code>boost::asio::ip::tcp::socket socket(io_service); ... boost::asio::socket_base::bytes_readable command(true); socket.io_control(command); std::size_t bytes_readable = command.get(); </code></pre> http://stackoverflow.com/questions/440645/how-can-i-convert-javascript-code-into-one-big-java-string/440661#440661 0 Answer by vividos for How can I convert JavaScript code into one big Java string vividos 2009-01-13T20:27:56Z 2009-01-13T20:27:56Z <p>You can use the <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">jsmin</a> tool to compress the Javascript to a single line (hopefully), but it doesn't escape the quotes. This can be done with search/replace in an editor or the server side scripting language used.</p> http://stackoverflow.com/questions/427329/reading-from-2-sockets-in-2-threads-causes-data-loss/427358#427358 0 Answer by vividos for Reading from 2 sockets in 2 threads causes data loss vividos 2009-01-09T07:50:55Z 2009-01-09T07:50:55Z <p>Reading from one socket in two threads is not thread safe, you may not know for sure which caller gets a packet fron the underlying socket buffer first. Writing to a socket is the same. Since you're reading from two different sockets in two different threads (and I assume that each socket has its own thread), it should work.</p> http://stackoverflow.com/questions/1771692/when-does-template-instantiation-bloat-matter-in-practice/1772190#1772190 Comment by vividos on When does template instantiation bloat matter in practice? vividos 2009-11-20T18:59:17Z 2009-11-20T18:59:17Z Ideally you should use a compiler/linker that recognizes and removes duplicate generated assembly code. Visual Studio does that (COMDAT folding). http://stackoverflow.com/questions/1658620/why-is-my-owner-drawn-combobox-shown-empty/1707317#1707317 Comment by vividos on Why is my owner-drawn combobox shown empty? vividos 2009-11-10T19:49:21Z 2009-11-10T19:49:21Z will try that out... http://stackoverflow.com/questions/1658620/why-is-my-owner-drawn-combobox-shown-empty/1700545#1700545 Comment by vividos on Why is my owner-drawn combobox shown empty? vividos 2009-11-09T12:09:09Z 2009-11-09T12:09:09Z That's my custom drawing, filling the rect. No need to output text. http://stackoverflow.com/questions/1612546/how-to-fix-com-outproc-server-initializing-error-0x80004015/1612651#1612651 Comment by vividos on How to fix COM outproc server initializing error 0x80004015? vividos 2009-11-02T09:10:23Z 2009-11-02T09:10:23Z It seems the DCOM settings for this outproc server was set to be an Interactive User. Reverting to &quot;the launching user&quot; fixed the registration. Thanks! http://stackoverflow.com/questions/1464711/how-to-detect-if-errnot-is-defined/1464759#1464759 Comment by vividos on How to detect if errno_t is defined? vividos 2009-09-24T07:30:44Z 2009-09-24T07:30:44Z thanks. I don't have autoconf available, so I guess I have to go with compiler version macro checks... http://stackoverflow.com/questions/972681/how-to-correctly-uninstall-a-running-windows-mobile-today-screen-plugin/972844#972844 Comment by vividos on How to correctly uninstall a running Windows Mobile today screen plugin? vividos 2009-06-14T10:59:54Z 2009-06-14T10:59:54Z Thanks! From searching I got some approaches to reload the today screen that may work. 1. Sending SendMessage(::GetDesktopWindow(), WM_WININICHANGE, 0xF2, 0); 2. Posting PostMessage(HWND_BROADCAST, WM_WININICHANGE, 0xF2, 0); which may do the same. http://stackoverflow.com/questions/968756/how-to-generate-a-guid-in-vbscript/968767#968767 Comment by vividos on How to generate a GUID in VBScript? vividos 2009-06-09T21:50:24Z 2009-06-09T21:50:24Z Thanks! I like the &quot;Hey, Scripting Guy!&quot; link! http://stackoverflow.com/questions/669989/how-to-implement-process-global-variable-in-c/671148#671148 Comment by vividos on How to implement process-global variable in C++? vividos 2009-04-15T10:41:34Z 2009-04-15T10:41:34Z Since I only need a process-wide variable, shared sections would be too much. Thanks for the suggestion, though! http://stackoverflow.com/questions/669989/how-to-implement-process-global-variable-in-c/670010#670010 Comment by vividos on How to implement process-global variable in C++? vividos 2009-04-15T10:40:22Z 2009-04-15T10:40:22Z I did look at Boost.Interprocess, but since I only need it process-wide, I think the easy solution would be to put the variable in a separate dll. Thanks for the suggestion, though! http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-08T20:55:09Z 2009-03-08T20:55:09Z The reason for this is maybe that the derived classes are template parameters. The code from litb gives a compiler error, too. http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-06T21:34:53Z 2009-03-06T21:34:53Z I completed the code with classes A, B and C to show what I mean. This code compiles using Visual C++ 2005 and outputs &quot;B::fn()&quot; and &quot;C::fn()&quot; correctly. With what compiler did you try it? http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-06T08:24:37Z 2009-03-06T08:24:37Z j_random_hacker: The original question poster doesn't want to override fn() in D, he wants to enumerate and call all fn() functions of the classes in his inheritance list. And you don't have to override fn() in D to get it compile. Try it out. http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616543#616543 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-05T21:37:06Z 2009-03-05T21:37:06Z I think that's not what shoosh wants to do. He stated &quot;What I'm trying to do is to have D somehow enumerate all of the instances of fn() it has in its ancestry.&quot;. He doesn't want to override fn() in class D. http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-05T20:52:43Z 2009-03-05T20:52:43Z litb, where do you expect an error message? For the compiler there's no ambiguity, since I'm forcing it to TypeB or TypeC. A plain fn() call would error, though. http://stackoverflow.com/questions/616380/c-multiple-inheritance-virtual-function-mess/616415#616415 Comment by vividos on C++: Multiple inheritance + virtual function mess vividos 2009-03-05T20:17:02Z 2009-03-05T20:17:02Z I'm not sure if a TypeB::fn() call does the right thing with respect to the virtual function call. With the static cast you're sure you have an object of type B. I guess I have to try that out. Thanks for the note about the correction!