User jmatthias - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:18:37Z http://stackoverflow.com/feeds/user/2768 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1045333/why-cant-i-find-the-define-for-csidlprofiles 0 Why can't I find the #define for CSIDL_PROFILES? jmatthias 2009-06-25T17:59:12Z 2009-07-14T01:00:01Z <p>I am trying to use SHGetFolderPath() to determine the path of the user profiles folder. The documentation states that CSIDL_PROFILES defines this folder:</p> <p>CSIDL_PROFILES (0x003e) Version 6.0. The file system directory containing user profile folders. A typical path is C:\Documents and Settings.</p> <p>I am using Visual Studio 2005 SP1, and I cannot locate the definition of the constant CSIDL_PROFILES in the Platform SDK include files? Do I need a new version of the Platform SDK?</p> <p>So I did some more experimenting by using the ID 0x3e in place of the symbol. However, it looks like 0x3e is not a valid argument to the shell functions that accept CSIDL_* arguments (an invalid argument error is returned).</p> <p>So I guess CSIDL_PROFILES is not a valid argument and the at least some of the MSDN pages on the subject are incorrect when they mention this symbol. I have to say in all my years of working with the Win32/MSDN documentation I can't remember a similar situation.</p> http://stackoverflow.com/questions/1041649/how-to-add-a-shortcut-to-the-sendto-menu-that-will-be-available-to-all-users 1 How to add a shortcut to the 'SendTo' menu that will be available to all users. jmatthias 2009-06-25T00:40:24Z 2009-06-25T00:45:41Z <p>You can add a new item to the 'Send To' Windows explorer menu by creating an application shortcut in the SendTo folder contained in the user's profile folder e.g. C:\Documents and Settings\Username\SendTo\</p> <p>But how do you add a 'Send To' menu item that will be available to all users without having to add it to every user's profile folder?</p> <p>I found one page that suggested that you could create a SendTo folder in C:\Documents and Settings\All Users but the article was targeted at Windows 2000 and it does not appear to work in Windows XP.</p> http://stackoverflow.com/questions/1009124/is-it-possible-to-strip-debug-information-from-a-coff-library-file-lib 0 Is it possible to strip debug information from a COFF library file (.lib)? jmatthias 2009-06-17T19:39:37Z 2009-06-18T05:41:03Z <p>I am linking with a number of 3rd party .lib files, and I get a large number of LNK4099 warnings at link time. It appears that this warning message cannot be supressed, so I believe that if I remove all debug information from the .lib files, the warning will not be shown. Is there a way to remove the debug information? These are libraries that I do not have the source code for.</p> <p>I am using VS2005 C++ (on Windows of course).</p> http://stackoverflow.com/questions/997687/what-is-the-most-useful-information-to-display-at-the-front-of-the-office/997816#997816 2 Answer by jmatthias for What is the most useful information to display at the front of the office? jmatthias 2009-06-15T19:08:59Z 2009-06-15T19:08:59Z <p>The movie 'Office Space'</p> http://stackoverflow.com/questions/979022/how-do-i-restore-ms-words-document-window-using-automation 0 How Do I 'Restore' MS Word's Document Window Using Automation jmatthias 2009-06-11T02:25:14Z 2009-06-13T22:21:45Z <p>I would like to be able to 'restore' MS Word's document window using Automation.</p> <p>I already have the application object and I have tried calling App.Activate. Activate will bring the window to the top of the Window stack but not if Word is minimized. I can set the WindowState to Maximized, Minimized and Normal but what I really need to do is restore the window to the state it was in before the user minimized it (this would be equivalent to the user clicking on the application's button in the taskbar).</p> <p>Is this possible using Word automation?</p> <p>I am actually using C++ to to the automation so I am able to call Win32 API functions if required.</p> <p>If there is not direct way to restore the window then the question becomes, 'how can I get the window handle of the ActiveWindow?'</p> http://stackoverflow.com/questions/979022/how-do-i-restore-ms-words-document-window-using-automation/985088#985088 0 Answer by jmatthias for How Do I 'Restore' MS Word's Document Window Using Automation jmatthias 2009-06-12T05:03:35Z 2009-06-13T22:21:45Z <p>The best way I have come up with so far is as follows.</p> <p>Get the active window using Application.ActiveWindow</p> <p>This window object has a property named Caption. The caption appears in the document window's title.</p> <p>I then use the Win32 function EnumWindows() to search for the Win32 window. I get the window text for each window returned by EnumWindows() using the Win32 function GetWindowText(). I attempt to find the caption in the window text and as an extra check I make sure the window text also contains the string 'Microsoft Word'.</p> <p>Once I find the window, I then have it's Win32 window handle which I can then pass to the Win32 function ShowWindow(hWnd, SW_RESTORE).</p> <p>You also have to call Application.Activate.</p> <p>This solution is not perfect, for example I don't really like to assume that the window title will always contain the text 'Microsoft Word' but I also don't want to pick the wrong window.</p> http://stackoverflow.com/questions/970765/why-does-an-application-running-as-the-system-account-on-windows-when-logging-off/970818#970818 0 Answer by jmatthias for Why does an application running as the system account on windows when logging off jmatthias 2009-06-09T15:31:39Z 2009-06-09T15:31:39Z <p>Because the process was started by explorer.exe, it will be terminated when the user logs off regardless of what account it's running under. That's simply the way windows works. To allow the process to continue running it needs to be a service or possibly started by the task scheduler.</p> http://stackoverflow.com/questions/44241/how-can-i-monitor-which-window-currently-has-keyboard-focus 7 How Can I Monitor Which Window Currently Has Keyboard Focus jmatthias 2008-09-04T17:27:35Z 2009-05-20T22:24:45Z <p>Is there a way to track which window currently has keyboard focus. I could handle WM_SETFOCUS for every window but I'm wondering if there's an alternative, simpler method (i.e. a single message handler somewhere).</p> <p>I could use OnIdle() in MFC and call GetFocus() but that seems a little hacky.</p> http://stackoverflow.com/questions/849986/net-installation-project-registry-problem/850053#850053 0 Answer by jmatthias for .net installation project registry problem jmatthias 2009-05-11T21:00:09Z 2009-05-11T21:00:09Z <p>Set the value of the registry entry to [TARGETDIR] or [TARGETDIR]AppName.exe</p> http://stackoverflow.com/questions/456155/system-diagnostics-process-start-cannot-start-process-when-called-from-windows 0 System.Diagnostics.Process.Start() cannot start process when called from Windows service. jmatthias 2009-01-18T23:54:15Z 2009-04-02T22:30:56Z <p>I am trying to start an external process from a .NET Windows service. In the past I have used the Process.Start() overload that takes the executable path and a command line string. This works. But now I would like to start the process and have it run in the context of a particular user. So I call this version of Start()</p> <pre><code>public static Process Start( string fileName, string userName, SecureString password, string domain) </code></pre> <p>However, when I call the method, the application I am trying to run generates an unhandled exception 'The application failed to initialize properly (0xc0000142). Click on OK to terminate the application.'</p> <p>I have tried to start different applications and they all generate the same exception. I have run the code outside of the Windows service and the application starts correctly.</p> <p>So is there a way to get this to work in a Windows service?</p> http://stackoverflow.com/questions/45235/strange-dependency-behavior-in-vs-net-2005-unnecessary-cpp-compilation 1 Strange Dependency Behavior in VS.NET 2005 (Unnecessary .CPP Compilation) jmatthias 2008-09-05T04:37:15Z 2009-03-23T09:18:38Z <p>I work on a large Visual C++ (MFC) project in VS.NET 2005.</p> <p>I have noticed strange behavior in Visual C++ 2005. Often, I will change one line of code in a .CPP file but many .CPP files will compile as a result of this. I have never seen this until VS.NET 2005. Theortically, changing a line of code in a .CPP file should simply require recompilation of that .CPP file and re-linking of the PE file.</p> <p>What am I not understanding about the build process.</p> http://stackoverflow.com/questions/588420/c-compile-problem-with-winhttp-windows-sdk/588444#588444 1 Answer by jmatthias for C++ Compile problem with WinHttp/Windows SDK jmatthias 2009-02-25T23:42:41Z 2009-02-25T23:42:41Z <p>If you check the MSDN reference for the WinHttp* functions you will see that you need to link with the library Winhttp.lib.</p> <p>Open the project settings, select the linker options then 'input' and add WinHttp.lib to the 'Additional Dependencies' list.</p> <p>Or you could put</p> <pre><code>#pragma comment(lib, "winhttp.lib") </code></pre> <p>(as previously mentioned) in your source code.</p> http://stackoverflow.com/questions/547074/sql-server-how-do-i-add-a-constraint-to-an-existing-table-but-only-if-the-constr 0 SQL Server: How do I add a constraint to an existing table but only if the constraint does not already exist? jmatthias 2009-02-13T18:16:30Z 2009-02-13T18:50:48Z <p>I need to add a constraint to an existing SQL server table but only if it does not already exist.</p> <p>I am creating the constraint using the following SQL.</p> <pre><code>ALTER TABLE [Foo] ADD CONSTRAINT [FK_Foo_Bar] FOREIGN KEY ([BarId]) REFERENCES [Bar] ([BarId]) ON UPDATE CASCADE ON DELETE CASCADE </code></pre> <p>I'm hoping I can add some SQL to the begining of the SQL to test for the existence of the constraint but I have no idea how.</p> http://stackoverflow.com/questions/540161/how-do-i-programatically-change-the-security-attributes-of-a-file-so-that-any-use 1 How do I programatically change the security attributes of a file so that any user can delete the file. jmatthias 2009-02-12T05:25:39Z 2009-02-12T05:34:04Z <p>I have a server written in C# that makes use of impersonation.</p> <p>I would like to know how I can change the security attributes of a file so that any user can delete it.</p> <p>My server impersonates a user and then creates a temporary file. Later on I need to delete the file but at that point, I am no longer impersonating the user that created the file and when an attempt is made to delete the file an exception is generated. My supposition is that at the time I create the file, I should be able to change the security attributes to allow any user to delete the file.</p> <p>How may I accomplish this (C# preferred but p/invoke will work too).</p> <p>I am currently using .NET 1.1, so a method that can be implemented in 1.1 would be appreciated.</p> http://stackoverflow.com/questions/510170/the-difference-between-the-local-system-account-and-the-network-service-accou 1 The difference between the 'Local System' account and the 'Network Service' account? jmatthias 2009-02-04T05:30:33Z 2009-02-04T05:55:31Z <p>I have written a Windows service that spawns a seperate process. This process creates a COM object. If the service runs under the 'Local System' account everything works fine, but if the service runs under the 'Network Service' account, the external process starts up but is fails to create the COM object. The error returned from the COM object creation is not a standard COM error (I think it's specific to the COM object being created).</p> <p>So how do I determine how the two accounts, 'Local System' and 'Network Service' differ. These built-in accounts seem very mysterious and nobody seems to know much about them.</p> http://stackoverflow.com/questions/399458/how-can-i-improve-visual-studio-performance-on-a-slow-hard-drive/399576#399576 0 Answer by jmatthias for How can I improve Visual Studio performance on a slow hard drive? jmatthias 2008-12-30T05:16:53Z 2008-12-30T05:16:53Z <p>Have you actually checked the prices of 7200RPM laptop drives lately? 160GB, 7200RPM for $60 @ NewEgg.com</p> http://stackoverflow.com/questions/374715/vc-6-0-access-violation-when-run-in-debugger/374820#374820 1 Answer by jmatthias for VC++ 6.0 access violation when run in debugger jmatthias 2008-12-17T15:05:25Z 2008-12-17T15:05:25Z <p>You may have a heap corruption bug. Your application may have corrupted the heap before <code>open_new_log()</code> is called.</p> http://stackoverflow.com/questions/285573/what-is-the-maximum-number-of-characters-that-can-be-stored-in-a-windows-installe 2 What is the maximum number of characters that can be stored in a Windows Installer property. jmatthias 2008-11-12T22:13:57Z 2008-11-22T02:33:26Z <p>I have googled quite a bit and I cannot find the answer. So how many characters can be stored in a Windows Installer property value. If you give an answer can you provide the source of the answer?</p> http://stackoverflow.com/questions/25499/whats-the-simplest-way-to-execute-a-query-in-visual-c 1 What's the simplest way to execute a query in Visual C++ jmatthias 2008-08-25T00:27:50Z 2008-11-17T21:53:11Z <p>I'm using Visual C++ 2005 and would like to know the simplest way to connect to a MS SQL Server and execute a query.</p> <p>I'm looking for something as simple as ADO.NET's SqlCommand class with it's ExecuteNonQuery(), ExecuteScalar() and ExecuteReader().</p> <p>Sigh offered an answer using CDatabase and ODBC.</p> <p>Can anybody demonstrate how it would be done using ATL consumer templates for OleDb?</p> <p>Also what about returning a scalar value from the query?</p> http://stackoverflow.com/questions/228407/rgb-for-color-composition-rather-than-primary-hues/228417#228417 0 Answer by jmatthias for RGB for color composition rather than primary hues jmatthias 2008-10-23T03:12:51Z 2008-10-23T03:12:51Z <p>Because combining light sources (which computer monitors do) does not work the same way as combining printed ink. It's just a guess.</p> http://stackoverflow.com/questions/211145/installing-sqlserver-2005-express-using-installshield-and-creating-a-unique-named/214540#214540 0 Answer by jmatthias for Installing SqlServer 2005 Express using InstallShield and creating a unique named instance jmatthias 2008-10-18T03:57:09Z 2008-10-18T03:57:09Z <p>I have not used InstallShield Express. InstallShield Professional allows you to define the command line that is passed to the SQL Server installation. This allows you to define an instance name along with other parameters such as 'quiet' mode.</p> http://stackoverflow.com/questions/202197/how-to-use-sftp-from-within-an-ms-access-database-module/202269#202269 0 Answer by jmatthias for How to use sftp from within an MS Access database module? jmatthias 2008-10-14T18:28:56Z 2008-10-14T18:28:56Z <p>I would imagine you just need to find an FTP COM object. You should then be able to instantiate this in the Access module code. dart.com has one and I'm sure there are many more (just Google FTP COM).</p> http://stackoverflow.com/questions/134796/how-to-automatically-stop-visual-c-build-at-first-compile-error/194748#194748 5 Answer by jmatthias for How to automatically stop Visual C++ build at first compile error? jmatthias 2008-10-11T22:30:57Z 2008-10-11T22:30:57Z <p>This can be done by adding a macro that is run in response to the event OnBuildProjConfigDone.</p> <p>The macro is as follows:</p> <pre><code>Private Sub BuildEvents_OnBuildProjConfigDone(ByVal Project As String, ByVal ProjectConfig As String, ByVal Platform As String, ByVal SolutionConfig As String, ByVal Success As Boolean) Handles BuildEvents.OnBuildProjConfigDone If Success = False Then DTE.ExecuteCommand("Build.Cancel") End If End Sub </code></pre> http://stackoverflow.com/questions/185524/building-mfc-automation-example-to-access-excel-using-ole-automation-cant-com/186029#186029 0 Answer by jmatthias for Building MFC Automation example (to access Excel using OLE automation). Can't compile jmatthias 2008-10-09T05:38:18Z 2008-10-09T05:38:18Z <p>I don't know if this helps but generally you #import the type library but you do NOT #include the .tli and .tlh files (the #import implicitly does this).</p> <p>Also, remember there are two ways of calling a COM server in MFC.</p> <ol> <li><p>Use #import which basically creates smart ATL pointers to create COM objects and call methods.</p></li> <li><p>Use the class wizard to create an IDispatch style class wrapper to create COM object and call the methods.</p></li> </ol> http://stackoverflow.com/questions/176331/shared-memory-access-permissions-on-windows/176424#176424 0 Answer by jmatthias for Shared memory access permissions on Windows jmatthias 2008-10-06T22:14:40Z 2008-10-06T22:14:40Z <p>Have you tried moving the file to a different location. Try putting it in the 'Shared Documents' folder, this seems to be the most freely accessible folder in Vista.</p> http://stackoverflow.com/questions/168550/how-can-i-display-a-tooltip-over-a-button-using-winforms/168622#168622 1 Answer by jmatthias for How can I display a tooltip over a button using Winforms? jmatthias 2008-10-03T19:55:53Z 2008-10-03T19:55:53Z <p>Using the form designer:</p> <p>Drag the ToolTip control from the Toolbox, onto the form. Select the properties of the control you want the tool tip to appear on. Find the property 'ToolTip on toolTip1' (the name may not be toolTip1 if you changed it's default name). Set the text of the property to the tool tip text you would like to display.</p> <p>You can set also the tool tip programatically using the following call...</p> <p>this.toolTip1.SetToolTip(this.targetControl, "My Tool Tip");</p> http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159701#159701 1 Answer by jmatthias for Keeping Visual Studio Projects on a Network Drive jmatthias 2008-10-01T20:57:52Z 2008-10-01T20:57:52Z <p>Are you having any specific problems?</p> <p>If you allow more than one person to open the solution, your first problem will be that the .NCB file (Intellisense) will be locked exclusively and only one user will be able to browse the class tree. And of course you have the potential for one user's changes to overwrite the other user's changes.</p> http://stackoverflow.com/questions/146134/how-to-trim-illegal-characters-from-path-and-filenames/146142#146142 1 Answer by jmatthias for How to trim illegal characters from path and filenames? jmatthias 2008-09-28T15:56:40Z 2008-09-28T15:56:40Z <p>String.Trim() only removes chars from the beginning and end of the string.</p> http://stackoverflow.com/questions/143850/how-does-multiple-c-threads-execute-on-a-class-method/143860#143860 0 Answer by jmatthias for How does Multiple C++ Threads execute on a class method jmatthias 2008-09-27T15:44:46Z 2008-09-27T15:44:46Z <p>Since i is a local variable it is stored on the thread's own private stack. Hence, you do not need to protect i with a critical section.</p> http://stackoverflow.com/questions/143808/how-to-improve-link-performance-for-a-large-c-application-in-vs2005/143843#143843 3 Answer by jmatthias for How to improve link performance for a large C++ application in VS2005 jmatthias 2008-09-27T15:40:21Z 2008-09-27T15:40:21Z <p>Generally, using DLLs instead of static libraries will improve linking times quite a bit.</p> http://stackoverflow.com/questions/1793577/overloading-default-construction-with-initializer-list/1793617#1793617 Comment by jmatthias on Overloading Default Construction with Initializer List jmatthias 2009-11-24T23:23:34Z 2009-11-24T23:23:34Z I missed that. Now I want to delete my answer. http://stackoverflow.com/questions/439740/visual-source-safe-version-8/439801#439801 Comment by jmatthias on Visual Source Safe Version 8 jmatthias 2009-07-10T05:22:38Z 2009-07-10T05:22:38Z He probably did it as a way of commenting on ALL the answers that tell him not to use SourceSafe instead of answering his question. http://stackoverflow.com/questions/1045333/why-cant-i-find-the-define-for-csidlprofiles/1057497#1057497 Comment by jmatthias on Why can't I find the #define for CSIDL_PROFILES? jmatthias 2009-06-29T15:25:09Z 2009-06-29T15:25:09Z In my case, it would have been useful. I actually did need to know the location of this folder because I needed to iterate through all user profile folders and copy a file to each 'SendTo' folder. Bear in mind that this code was run during an installation running with Admin rights. In the end I had to read the current user profile folder and determine the parent folder. http://stackoverflow.com/questions/1045333/why-cant-i-find-the-define-for-csidlprofiles Comment by jmatthias on Why can't I find the #define for CSIDL_PROFILES? jmatthias 2009-06-26T15:08:12Z 2009-06-26T15:08:12Z @Roddy, I cannot find it at msdn.com, the reference I found was in the local MSDN help that ships with VS2005; ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.WIN32COM.v10.en/shellcc/platform/shell/reference/enums/csidl.htm http://stackoverflow.com/questions/1045333/why-cant-i-find-the-define-for-csidlprofiles/1046380#1046380 Comment by jmatthias on Why can't I find the #define for CSIDL_PROFILES? jmatthias 2009-06-26T01:49:15Z 2009-06-26T01:49:15Z It's strange that it appears in one version of the MSDN page (the one that ships with VS2005). It's as if they have removed it. I did try to use the ID directly but that does not appear to works since the shell functions return an invalid argument code when I use 0x3e. http://stackoverflow.com/questions/1009124/is-it-possible-to-strip-debug-information-from-a-coff-library-file-lib/1009705#1009705 Comment by jmatthias on Is it possible to strip debug information from a COFF library file (.lib)? jmatthias 2009-06-18T05:22:24Z 2009-06-18T05:22:24Z The error is LNK4099. I have fixed it in the question. http://stackoverflow.com/questions/979022/how-do-i-restore-ms-words-document-window-using-automation/979124#979124 Comment by jmatthias on How Do I 'Restore' MS Word's Document Window Using Automation jmatthias 2009-06-11T03:16:38Z 2009-06-11T03:16:38Z I have thought of this approach but the object model does not seem to supply a way to get the window handle, which I would need in order to call ::ShowWindow() http://stackoverflow.com/questions/584683/stabilizing-the-standard-library-qsort Comment by jmatthias on Stabilizing the standard library qsort? jmatthias 2009-02-25T04:13:14Z 2009-02-25T04:13:14Z I don't understand why you would compare the pointers. And what do you mean by stable (excuse my ignorance). Maybe you could elaborate in your question. http://stackoverflow.com/questions/540161/how-do-i-programatically-change-the-security-attributes-of-a-file-so-that-any-use/540176#540176 Comment by jmatthias on How do I programatically change the security attributes of a file so that any user can delete the file. jmatthias 2009-02-12T05:40:10Z 2009-02-12T05:40:10Z Thanks but I need a .NET 1.1 solution. http://stackoverflow.com/questions/540161/how-do-i-programatically-change-the-security-attributes-of-a-file-so-that-any-use/540169#540169 Comment by jmatthias on How do I programatically change the security attributes of a file so that any user can delete the file. jmatthias 2009-02-12T05:35:23Z 2009-02-12T05:35:23Z Thanks but I need a .NET 1.1 solution. http://stackoverflow.com/questions/456155/system-diagnostics-process-start-cannot-start-process-when-called-from-windows/456166#456166 Comment by jmatthias on System.Diagnostics.Process.Start() cannot start process when called from Windows service. jmatthias 2009-01-19T00:54:35Z 2009-01-19T00:54:35Z The application is a simple Win32 application (i.e. no config files). http://stackoverflow.com/questions/374715/vc-6-0-access-violation-when-run-in-debugger/374819#374819 Comment by jmatthias on VC++ 6.0 access violation when run in debugger jmatthias 2008-12-17T15:10:38Z 2008-12-17T15:10:38Z The use of the debug heap vs the relase heap is determined by the type of C runtime library that the application is linked with not the fact that the code is being run in the debugger i.e. running the debug build of the app from the command line will use the debug heap. http://stackoverflow.com/questions/134796/how-to-automatically-stop-visual-c-build-at-first-compile-error/194748#194748 Comment by jmatthias on How to automatically stop Visual C++ build at first compile error? jmatthias 2008-12-07T06:37:01Z 2008-12-07T06:37:01Z Yes, but for me that's close enough (as opposed to building the next 20 or so projects before stopping).