User AlanKley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:52:43Z http://stackoverflow.com/feeds/user/8761 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/64790/why-arent-my-breakpoints-working-in-xcode 8 Why aren't my breakpoints working in Xcode? AlanKley 2008-09-15T17:10:26Z 2009-11-26T07:35:01Z <p>I have breakpoints set but Xcode appears to ignore them.</p> http://stackoverflow.com/questions/1760899/how-to-call-isdialogmessage-in-a-modal-dialog 0 How to call IsDialogMessage in a Modal Dialog AlanKley 2009-11-19T04:35:20Z 2009-11-19T09:21:14Z <p>In my Win32 app, I had a modal dialog that displays settings that I had to add more settings to. In order to fit the new settings, I dropped a TabCtrl in the dialog and implemented two modeless dialogs. The UI is working switching between them but the modeless dialogs don't respond to the keyboard. In a regular app, IsDialogMessage (hWndCurModelessDialog) would be called. How would I do this for my Modal dialog containing a modeless dialog?</p> http://stackoverflow.com/questions/1760850/best-practice-ordering-of-public-protected-private-within-the-class-definition/1760925#1760925 0 Answer by AlanKley for Best practice: ordering of public/protected/private within the class definition? AlanKley 2009-11-19T04:43:17Z 2009-11-19T04:43:17Z <p>I generally agree with the public, protected, private order as well as the static data, member data, member functions order.</p> <p>Though I sometimes group like members (getters &amp; setters) I generally prefer listing members within a group ALPHABETICALLY so that they can be located more easily.</p> <p>I also like lining up the data/functions vertically. I tab/space over to the right enough so that all names are aligned in the same column.</p> http://stackoverflow.com/questions/1380567/can-i-use-an-stl-map-if-i-plan-to-use-arbitrary-class-objects-as-the-key 3 Can I use an stl map if I plan to use arbitrary class objects as the key? AlanKley 2009-09-04T17:30:44Z 2009-11-03T09:39:01Z <p>I'm new to STL. The thing stumping me about using a map to store arbitrary objects:</p> <pre><code>std::map&lt;MyClassObj, MyDataObject&gt; MyMap; </code></pre> <p>is how I find objects. How would MyMap.find (MyClassObjInstance) work for instance? Do I need to implement my own iterator and provide some standard functions which would include some equivalence function? Any examples would be appreciated.</p> <p>Is there another method to store an associated list of arbitrary objects using standard libraries? I'm already using stl to maintain platform portability, and would prefer not to add another library dependency like BOOST.</p> http://stackoverflow.com/questions/75432/how-can-i-prevent-urldownloadtofile-from-retrieving-from-the-cache 1 How can I prevent URLDownloadToFile from retrieving from the cache ? AlanKley 2008-09-16T18:26:15Z 2009-09-03T18:53:30Z <p>I am using URLDownloadToFile to retrieve a file from a website. Subsequent calls return the original file rather than an updated version. I assume it is retrieving a cached version.</p> http://stackoverflow.com/questions/1364753/how-do-i-conditionally-import-a-function-from-a-dll-in-an-inno-setup-script 2 How do I conditionally import a function from a DLL in an Inno Setup script? AlanKley 2009-09-01T21:33:43Z 2009-09-01T21:47:27Z <p>I have a helper DLL and a function I call at the end of my setup script. I only want to run it depending on the operating system version.</p> <p>I include the following lines in the code section:</p> <pre><code>function CompleteInstall(szInstallPath: String) : Integer; external 'CompleteInstall@files:InstallHelper.dll cdecl setuponly'; </code></pre> <p>I've written a function to prevent the DLL from being extracted adding "Check: IsXPorHigher" to the Source statement for the DLL in the [Files] section.</p> <p>It appears that when the setup program begins it attempt to resolve the external function due to the external statement, causing a runtime error (Cannot import...) because my DLL relies on a function that is not available on older OS's. </p> <p>Can I conditionally declare the function in the script or does this require a separate installer for older versions of the OS? I'm trying hard to maintain just one script for all scenarios.</p> http://stackoverflow.com/questions/1039871/building-multiple-configurations-with-a-single-solution-configuration 2 Building multiple configurations with a single Solution Configuration AlanKley 2009-06-24T17:47:05Z 2009-08-14T13:55:23Z <p>As part of my software package I need to build both a WIN32 AND an x64 version of a DLL. I have a project setup that builds all necessary components and has a custom build step to build an installer. I can't figure out how to have both versions of the DLL build with one build command. The Configuration Manager allows you to select which project configuration to build for a given solution configuration but not multiple project configurations for the same project. I'm using Visual Studio 2008</p> http://stackoverflow.com/questions/957070/problem-calling-dll-function-with-parameter-in-inno-setup 1 Problem calling dll function with parameter in Inno Setup AlanKley 2009-06-05T17:19:53Z 2009-06-16T08:54:34Z <p>I am successfully calling a function in a DLL from Inno Setup, however upon returning I get a Runtime Error...Exception: Access violation at address XXXXXXX. Write of address XXXXXX.</p> <p>The function is declared as:</p> <pre><code>function CompleteInstall(szIntallPath: String) : Integer; external 'CompleteInstall@files:InstallHelper.dll stdcall setuponly'; </code></pre> <p>And called:</p> <pre><code>procedure CurStepChanged(CurStep: TSetupStep); begin if CurStep = ssPostInstall then begin CompleteInstall('Parm1'); // ExpandConstant('{app}') end; end; </code></pre> <p>There is no problem if I change the function to not take a parameter. It still occurs if I change it to take a single integer parameter or declare it as a function and change the function to be a void function with an integer parameter.</p> <p>The called function does nothing but return:</p> <pre><code>__declspec(dllexport) int CompleteInstall(char* szInstallPath) { //AfxMessageBox ("Got here" /*szInstallPath*/, MB_OK); return 1; } </code></pre> http://stackoverflow.com/questions/707372/how-can-a-cells-background-color-be-set-other-than-the-obvious-cell-shading-prop 1 How can a cell's background color be set other than the obvious Cell shading property? AlanKley 2009-04-01T21:19:28Z 2009-04-01T21:23:47Z <p>I can't for the life of me figure out why certain cells are shaded in a spreadsheet template I downloaded. I confirmed that the cell's shading property is set to no color. The cell has a simple formula: =SUM(J8:K8). If the background color is being set by code in another cell, I'm not sure how to find it. Searching for the cell name (ex: B7) doesn't come up with anything. Any suggestions what could be setting the background color?</p> http://stackoverflow.com/questions/698655/how-can-i-categorize-the-memory-usage-of-a-non-net-application-dll 1 How can I categorize the memory usage of a NON-.NET application/DLL ? AlanKley 2009-03-30T19:21:04Z 2009-03-30T20:45:35Z <p>I have a 32-bit Visual Studio 8.0 C++ Windows DLL (non-.NET) that appears to be taking up more memory than I would expect. I want to determine exactly where the memory is going, not just a single figure of the total memory used (not interested in Task Manager or Resource Monitor's memory usage values). Back in 16-bit days HeapWalker was very helpful and you could even select a BITMAP handle and view it's graphic contents. I'm trying to remember how to read a .MAP file and add up the various sections but there is very little documentation and I'm not sure how accurate this technique is. Anybody have any advice?</p> http://stackoverflow.com/questions/512706/how-do-you-pass-in-parameters-to-the-inno-setup-command-line-compiler 1 How do you pass in parameters to the Inno Setup command line compiler? AlanKley 2009-02-04T18:42:30Z 2009-02-04T22:21:16Z <p>It was suggested in the IS newsgroup to use /D= but using the iscc.exe that came with version 5.2.3 I get an "Unknown option:" error.</p> <p>Then in the script, how do you use the value of the command line parameter?</p> http://stackoverflow.com/questions/86244/why-am-i-getting-this-objective-c-error-message-invalid-conversion-from-objcob 1 Why am I getting this objective-c error message: invalid conversion from 'objc_object*' AlanKley 2008-09-17T18:40:35Z 2008-11-10T14:35:10Z <p>This error message had me stumped for a while:</p> <p>invalid conversion from 'objc_object*' to 'int'</p> <p>the line in question was something like this:</p> <p>int iResult = [MyUtils utilsMemberFunc:param1,param2];</p> http://stackoverflow.com/questions/227797/can-you-detect-a-ctrl-click-context-menu-request-in-the-mousedown-event 0 Can you detect a ctrl-click (context menu) request in the mouseDown event? AlanKley 2008-10-22T22:40:47Z 2008-11-09T18:59:00Z <p>In my cross-platform architecture, I would like to act on a context menu click (right button click) during a mouse click event. In Cocoa, can you detect that the user either Ctrl-Clicked or double-tapped on touchpad (right-click equivalent) DURING the mouseDown event? I am aware of NSView's menuForEvent but do not wish to handle it here.</p> http://stackoverflow.com/questions/263503/how-do-you-find-the-amount-of-free-space-on-a-mounted-volume-using-cocoa 0 How do you find the amount of free space on a mounted volume using Cocoa? AlanKley 2008-11-04T21:29:38Z 2008-11-06T15:39:17Z <p>I am using the following code to determine free space on a volume. The folder was provided using NSOpenPanel. The item selected was a mounted volume and the path returned is \Volumes\Name</p> <pre><code>NSDictionary* fileAttributes = [[NSFileManager defaultManager] fileSystemAttributesAtPath:folder]; unsigned long long size = [[fileAttributes objectForKey:NSFileSystemFreeSize] longLongValue]; </code></pre> <p>Is there a better method to determine the free space on a mounted volume using Cocoa?</p> <p>Update: This is in fact the best way to determine the free space on a volume. It appeared it wasn't working but that was due to the fact that folder was actually /Volumes rather than /Volume/VolumeName</p> http://stackoverflow.com/questions/263503/how-do-you-find-the-amount-of-free-space-on-a-mounted-volume-using-cocoa/269161#269161 1 Answer by AlanKley for How do you find the amount of free space on a mounted volume using Cocoa? AlanKley 2008-11-06T15:39:17Z 2008-11-06T15:39:17Z <p>The code provided IS the best way in Cocoa to determine the free space on a volume. Just make sure that the path provided to [NSFileManagerObj fileSystemAttributesAtPath] includes the full path of the volume. I was deleting the last path component to assure that a folder rather than a file was passed in which resulted in /Volumes being used as the folder which does not give the right results.</p> <pre><code>NSDictionary* fileAttributes = [[NSFileManager defaultManager] fileSystemAttributesAtPath:folder]; unsigned long long size = [[fileAttributes objectForKey:NSFileSystemFreeSize] longLongValue]; </code></pre> http://stackoverflow.com/questions/95525/why-is-my-program-asking-for-permission-to-run-on-vista 2 Why is my program asking for permission to run on Vista? AlanKley 2008-09-18T18:42:37Z 2008-11-02T01:48:17Z <p>I've just built a VS C++ 6.0 program using VS 2008. When I attempt to run or debug the application, Vista asks for permission. What is it about how the program is built that causes this? The program is being built and run from a subfolder of C:\Dev</p> <p><a href="http://www.vistax64.com/vista-installation-setup/138053-vista-asks-permission-run-installed-programs.html" rel="nofollow">This response</a> made no sense to me as a solution to the problem.</p> http://stackoverflow.com/questions/227935/is-there-an-equivalent-technique-in-cocoa-for-the-synchronous-trackpopupmenu-in-w/230808#230808 0 Answer by AlanKley for Is there an equivalent technique in Cocoa for the synchronous TrackPopupMenu in Windows? AlanKley 2008-10-23T18:15:45Z 2008-10-23T18:23:34Z <p>It appears that popUpContextMenu is already synchronous. Since I didn't see a way to use NSMenu without having it send a notification to an NSView I came up with a scheme that instantiates a temporary NSView. The goal is to display a popup menu and return the selected item in the context of a single function call. Following is code snippets of my proposed solution:</p> <pre><code>// Dummy View class used to receive Menu Events @interface DVFBaseView : NSView { NSMenuItem* nsMenuItem; } - (void) OnMenuSelection:(id)sender; - (NSMenuItem*)MenuItem; @end @implementation DVFBaseView - (NSMenuItem*)MenuItem { return nsMenuItem; } - (void)OnMenuSelection:(id)sender { nsMenuItem = sender; } @end // Calling Code (in response to rightMouseDown event in my main NSView void HandleRButtonDown (NSPoint pt) { NSRect graphicsRect; // contains an origin, width, height graphicsRect = NSMakeRect(200, 200, 50, 100); //----------------------------- // Create Menu and Dummy View //----------------------------- nsMenu = [[[NSMenu alloc] initWithTitle:@"Contextual Menu"] autorelease]; nsView = [[[DVFBaseView alloc] initWithFrame:graphicsRect] autorelease]; NSMenuItem* item = [nsMenu addItemWithTitle:@"Menu Item# 1" action:@selector(OnMenuSelection:) keyEquivalent:@""]; [item setTag:ID_FIRST]; item = [nsMenu addItemWithTitle:@"Menu Item #2" action:@selector(OnMenuSelection:) keyEquivalent:@""]; [item setTag:ID_SECOND]; //--------------------------------------------------------------------------------------------- // Providing a valid windowNumber is key in getting the Menu to display in the proper location //--------------------------------------------------------------------------------------------- int windowNumber = [(NSWindow*)myWindow windowNumber]; NSRect frame = [(NSWindow*)myWindow frame]; NSPoint wp = {pt.x, frame.size.height - pt.y}; // Origin in lower left NSEvent* event = [NSEvent otherEventWithType:NSApplicationDefined location:wp modifierFlags:NSApplicationDefined timestamp: (NSTimeInterval) 0 windowNumber: windowNumber context: [NSGraphicsContext currentContext] subtype:0 data1: 0 data2: 0]; [NSMenu popUpContextMenu:nsMenu withEvent:event forView:nsView]; NSMenuItem* MenuItem = [nsView MenuItem]; switch ([MenuItem tag]) { case ID_FIRST: HandleFirstCommand(); break; case ID_SECOND: HandleSecondCommand(); break; } } </code></pre> http://stackoverflow.com/questions/227935/is-there-an-equivalent-technique-in-cocoa-for-the-synchronous-trackpopupmenu-in-w 0 Is there an equivalent technique in Cocoa for the synchronous TrackPopupMenu in Windows? AlanKley 2008-10-22T23:41:28Z 2008-10-23T18:23:34Z <p>In response to a rightMouse event I want to call a function that displays a context menu, runs it, and responds to the selected menu item. In Windows I can use TrackPopupMenu with the TPM_RETURNCMD flag.</p> <p>What is the easiest way to implement this in Cocoa? It seems NSMenu:popUpContextMenu wants to post an event to the specified NSView. Must I create a dummy view and wait for the event before returning? If so, how do I "wait" or flush events given I am not returning to my main ?</p> http://stackoverflow.com/questions/188942/how-do-you-iterate-backwards-through-an-stl-list 4 How do you iterate backwards through an STL list ? AlanKley 2008-10-09T19:57:10Z 2008-10-22T03:01:32Z <p>I'm writing some cross-platform code between Windows and Mac.</p> <p>If list::end() "returns an iterator that addresses the location succeeding the last element in a list" and can be checked when traversing a list forward, what is the best way to traverse backwards?</p> <p>This code workson the Mac but not on Windows (can't decrement beyond first element):</p> <pre><code>list&lt;DVFGfxObj*&gt;::iterator iter = m_Objs.end(); for (iter--; iter!=m_Objs.end(); iter--)// By accident discovered that the iterator is circular ? { } </code></pre> <p>this works on Windows:</p> <pre><code>list&lt;DVFGfxObj*&gt;::iterator iter = m_Objs.end(); do{ iter--; } while (*iter != *m_Objs.begin()); </code></pre> <p>Is there another way to traverse backward that could be implemented in a for loop?</p> http://stackoverflow.com/questions/64881/why-is-my-cocoa-program-getting-excbadaccess-during-startup 1 Why is my cocoa program getting EXC_BAD_ACCESS during startup? AlanKley 2008-09-15T17:24:01Z 2008-10-16T15:21:03Z <p>During the load of my cocoa application, my program crashes with the messsage EXC_BAD_ACCESS. The stack trace is not helpful. Any clues to how I can find the problem?</p> http://stackoverflow.com/questions/185536/in-opengl-how-can-you-get-items-to-draw-back-to-front 2 In openGL, how can you get items to draw back to front? AlanKley 2008-10-09T00:57:58Z 2008-10-10T02:40:12Z <p>By default it seems that objects are drawn front to back. I am drawing a 2-D UI object and would like to create it back to front. For example I could create a white square first then create a slightly smaller black square on top of it thus creating a black pane with a white border. <a href="http://gpwiki.org/index.php/OpenGL:Tutorials:Tutorial_Framework:Ortho_and_Alpha" rel="nofollow">This post</a> had some discussion on it and described this order as the "Painter's Algorithm" but ultimately the example they gave simply rendered the objects in reverse order to get the desired effect. I figure back to front (first objects go in back, subsequent objects get draw on top) rendering can be achieved via some transformation (gOrtho?) ?</p> <p>I will also mention that I am not interested in a solution using a wrapper library such as GLUT. </p> <p>I have also found that the default behavior on the Mac using the Cocoa NSOpenGLView appears to draw back to front, where as in windows I cannot get this behavior. The setup code in windows I am using is this:</p> <pre><code>glViewport (0, 0, wd, ht); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho (0.0f, wd, ht, 0.0f, -1.0f, 1.0f); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); </code></pre> http://stackoverflow.com/questions/185536/in-opengl-how-can-you-get-items-to-draw-back-to-front/189915#189915 3 Answer by AlanKley for In openGL, how can you get items to draw back to front? AlanKley 2008-10-10T02:28:34Z 2008-10-10T02:28:34Z <p>The following call will turn off depth testing causing objects to be drawn in the order created. This will in effect cause objects to draw back to front.</p> <pre><code>glDepthFunc(GL_NEVER); // Ignore depth values (Z) to cause drawing bottom to top </code></pre> <p>Be sure you do not call this:</p> <pre><code>glEnable (GL_DEPTH_TEST); // Enables Depth Testing </code></pre> http://stackoverflow.com/questions/163363/how-do-i-create-an-excel-chart-that-pulls-data-from-multiple-sheets 0 How do I create an Excel chart that pulls data from multiple sheets? AlanKley 2008-10-02T16:40:38Z 2008-10-02T18:04:06Z <p>I have monthly sales figures stored in separate sheets. I would like to create a plot of sales for multiple products per month. Each product would be represented in a different colored line on the same chart with each month running along the x axis.</p> <p>What is the best way to create a single line chart that pulls from the same relative cells on multiple sheets?</p> http://stackoverflow.com/questions/121812/how-do-i-use-inno-setup-to-optionally-install-a-plugin-file-in-a-folder-based-on 1 How do I use Inno Setup to optionally install a plugin/file in a folder based on a registry entry? AlanKley 2008-09-23T15:38:44Z 2008-09-23T18:32:38Z <p><a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">Inno Setup</a> is a nice easy to use installer. It is rated high in <a href="http://stackoverflow.com/questions/3767/what-is-the-best-choice-for-building-windows-installers#3769">this stackoverflow question</a>. I have a need to install a plugin to a folder relative to the installation folder of a 3rd Party application. It isn't obvious from the docs how to do this.</p> http://stackoverflow.com/questions/121812/how-do-i-use-inno-setup-to-optionally-install-a-plugin-file-in-a-folder-based-on/122860#122860 2 Answer by AlanKley for How do I use Inno Setup to optionally install a plugin/file in a folder based on a registry entry? AlanKley 2008-09-23T18:32:38Z 2008-09-23T18:32:38Z <p>You can find the answer to how to optionally install a file using a registry entry in the documentation and in sample code but it may not be obvious so here is some example script snippets using an Adobe Premiere Plugin as an example:</p> <p>The keys steps are:</p> <p>1) use the Check: parameter</p> <p>2) Write a function that calls RegQueryStringValue and parse the path to construct the relative plugin folder destination</p> <p>3) use {code:} to call a function to return the destination folder</p> <pre><code>// // Copy my plugin file to the Premiere Plugin folder, but only if Premiere is installed. // [Files] Source: "C:\sourceFiles\myplugin.prm"; Check: GetPremierePluginDestination; DestDir: "{code:PluginDestination}"; Flags: ignoreversion overwritereadonly [Code] var sPluginDest : String; // // Search for the path where Premiere Pro was installed. Return true if path found. // Set variable to plugin folder // function GetPremierePluginDestination(): Boolean; var i: Integer; len: Integer; begin sPluginDest := ''; RegQueryStringValue( HKLM, 'SOFTWARE\Adobe\Premiere Pro\CurrentVersion', 'Plug-InsDir', sPluginDest ); len := Length(sPluginDest); if len &gt; 0 then begin i := len; while sPluginDest[i] &lt;&gt; '\' do begin i := i-1; end; i := i+1; Delete(sPluginDest, i, Len-i+1); Insert('Common', sPluginDest, i); end; Result := len &gt; 0; end; // // Use this function to return path to install plugin // function PluginDestination(Param: String) : String; begin Result := sPluginDest; end; </code></pre> <p>I'm not a Pascal programmer so any suggestions on making GetPremiereDestination more efficient are welcome.</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103880#103880 1 Answer by AlanKley for What was your first home computer? AlanKley 2008-09-19T17:26:01Z 2008-09-19T17:26:01Z <p><img src="http://www.kleymeyer.com/images/z100.jpg" alt="alt text" /></p> <p>Zenith/Heathkit Z-100. Came with an 8-bit Intel 8085 that ran CP/M, and a 16-bit Intel 8088 to run MS-DOS or IBM PC/DOS OS's. Got the Amber monitor! Got a student discount from The University of Texas.</p> http://stackoverflow.com/questions/64790/why-arent-my-breakpoints-working-in-xcode/96338#96338 0 Answer by AlanKley for Why aren't my breakpoints working in Xcode? AlanKley 2008-09-18T20:04:23Z 2008-09-18T20:04:23Z <p>I believe that a project can also become corrupted in regards to breakpoints. I have a project, for example, that WILL NOT break on any breakpoints that it remembers from the previous session. I first wrote about this <a href="http://kleymeyer.typepad.com/blog/2007/09/problem-with-br.html" rel="nofollow">here</a></p> http://stackoverflow.com/questions/95525/why-is-my-program-asking-for-permission-to-run-on-vista/96033#96033 1 Answer by AlanKley for Why is my program asking for permission to run on Vista? AlanKley 2008-09-18T19:27:52Z 2008-09-18T19:27:52Z <p>Thank you Suma. You're response is the best yet and helped me arrive at a solution. I have determined that cause is explained by your first suggestion. Renaming the file to something not containing the word 'setup" did not help. </p> <p>Turned out I was mistaken. I have both VS 2005 and VS 2008 installed and when I tried opening the old .dsw file, it was 2005 that was launched and offered to upgrade the project. 2005 apparently created a manifest with only one line with the tag "assembly". Once I upgraded the project using VS 2008 a more extensive manifest file was created. I confirmed that the manifest is being embedded in my program by checking the Manifest Tool...Input and Output...Embed Manifest setting. This new manifest includes the following data:</p> <pre><code>&lt;trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"&gt; &lt;security&gt; &lt;requestedPrivileges&gt; &lt;requestedExecutionLevel level="asInvoker" uiAccess="false"&gt;&lt;/requestedExecutionLevel&gt; &lt;/requestedPrivileges&gt; &lt;/security&gt; </code></pre> <p></p> http://stackoverflow.com/questions/86244/why-am-i-getting-this-objective-c-error-message-invalid-conversion-from-objcob/86255#86255 3 Answer by AlanKley for Why am I getting this objective-c error message: invalid conversion from 'objc_object*' AlanKley 2008-09-17T18:42:17Z 2008-09-17T18:42:17Z <p>It doesn't matter what the "to" type is, what is important is that you recognize that this message, in this context, is reporting that the utilsMemberFunc declaration was not found and due to objective-c's dynamic binding it is assuming it returns an objc_object* rather than the type that utilsMemberFunc was declared to return. So why isn't it finding the declaration? Because ',' is being used rather than ':' to separate the parameters. </p> http://stackoverflow.com/questions/75432/how-can-i-prevent-urldownloadtofile-from-retrieving-from-the-cache/75452#75452 3 Answer by AlanKley for How can I prevent URLDownloadToFile from retrieving from the cache ? AlanKley 2008-09-16T18:27:40Z 2008-09-17T18:02:34Z <p>Call DeleteUrlCacheEntry with the same URL just prior to calling URLDownloadToFile. You will need to link against Wininet.lib</p> http://stackoverflow.com/questions/1760899/how-to-call-isdialogmessage-in-a-modal-dialog/1761954#1761954 Comment by AlanKley on How to call IsDialogMessage in a Modal Dialog AlanKley 2009-11-19T17:13:44Z 2009-11-19T17:13:44Z the DS_CONTROL Flag (Control setting in Visual Studio Dialog Settings) did the trick. Thanks! http://stackoverflow.com/questions/1380567/can-i-use-an-stl-map-if-i-plan-to-use-arbitrary-class-objects-as-the-key/1380602#1380602 Comment by AlanKley on Can I use an stl map if I plan to use arbitrary class objects as the key? AlanKley 2009-09-04T17:42:32Z 2009-09-04T17:42:32Z wow, my eyes just skimmed over that 3rd parameter! I guess I'm too accustomed to seeing overloaded function documentaion with a bunch of parameters I normally don't care about. Thanks! http://stackoverflow.com/questions/1380567/can-i-use-an-stl-map-if-i-plan-to-use-arbitrary-class-objects-as-the-key/1380586#1380586 Comment by AlanKley on Can I use an stl map if I plan to use arbitrary class objects as the key? AlanKley 2009-09-04T17:36:46Z 2009-09-04T17:36:46Z That's the type of answer I was hoping for, just couldn't find it in all the docs. Where is this documented? http://stackoverflow.com/questions/1364753/how-do-i-conditionally-import-a-function-from-a-dll-in-an-inno-setup-script/1364807#1364807 Comment by AlanKley on How do I conditionally import a function from a DLL in an Inno Setup script? AlanKley 2009-09-01T22:10:54Z 2009-09-01T22:10:54Z Excellent. Thanks for the tip. http://stackoverflow.com/questions/957070/problem-calling-dll-function-with-parameter-in-inno-setup/957121#957121 Comment by AlanKley on Problem calling dll function with parameter in Inno Setup AlanKley 2009-06-05T18:12:14Z 2009-06-05T18:12:14Z That is a good thought. My project settings in Visual Studio 2008 when set to _stdcall (C++...Advanced...Calling Convention to __stdcall /Gz) results in a Cannot Import Runtime error (with stdcall being used in the iss script). I tried again and it seems using __cdecl in the .iss script and c++ code is the only thing that works. Thanks for your help. http://stackoverflow.com/questions/707372/how-can-a-cells-background-color-be-set-other-than-the-obvious-cell-shading-prop/707381#707381 Comment by AlanKley on How can a cell's background color be set other than the obvious Cell shading property? AlanKley 2009-04-01T22:36:25Z 2009-04-01T22:36:25Z Your rock Zhaph. That was it! Thanks. http://stackoverflow.com/questions/698655/how-can-i-categorize-the-memory-usage-of-a-non-net-application-dll/698735#698735 Comment by AlanKley on How can I categorize the memory usage of a NON-.NET application/DLL ? AlanKley 2009-03-30T19:56:27Z 2009-03-30T19:56:27Z I had tried running dumpbin but got an error about a missing DLL. Didn't think to run vcvars32! I'll give your suggestions a try. I've been tracking dynamic allocations but the biggest hit is the first time the DLL is loaded so I'm looking at code size, static data and such. Thanks for responding. http://stackoverflow.com/questions/512706/how-do-you-pass-in-parameters-to-the-inno-setup-command-line-compiler Comment by AlanKley on How do you pass in parameters to the Inno Setup command line compiler? AlanKley 2009-02-04T23:52:22Z 2009-02-04T23:52:22Z Thanks all for the answers. All were helpful. I hate to pick out just one as the preferred answer. http://stackoverflow.com/questions/512706/how-do-you-pass-in-parameters-to-the-inno-setup-command-line-compiler/513598#513598 Comment by AlanKley on How do you pass in parameters to the Inno Setup command line compiler? AlanKley 2009-02-04T23:51:21Z 2009-02-04T23:51:21Z Thanks, I should have done a more general search instead of reyling on the Inno Setup forums! That thread had some good examples http://stackoverflow.com/questions/263503/how-do-you-find-the-amount-of-free-space-on-a-mounted-volume-using-cocoa/263829#263829 Comment by AlanKley on How do you find the amount of free space on a mounted volume using Cocoa? AlanKley 2008-11-06T15:34:36Z 2008-11-06T15:34:36Z Sorry, It seems I believed the code provided was not working but that was due to the fact that folder was &quot;/Volumes&quot; rather than &quot;/Volumes/VOlumeName&quot; which would not reflect the size of the actual volume. http://stackoverflow.com/questions/263503/how-do-you-find-the-amount-of-free-space-on-a-mounted-volume-using-cocoa Comment by AlanKley on How do you find the amount of free space on a mounted volume using Cocoa? AlanKley 2008-11-05T13:55:03Z 2008-11-05T13:55:03Z I typed that by habit, working more often in the Windows world. The path is as it was retrieved from NSOpenPanel. http://stackoverflow.com/questions/227935/is-there-an-equivalent-technique-in-cocoa-for-the-synchronous-trackpopupmenu-in-w/227975#227975 Comment by AlanKley on Is there an equivalent technique in Cocoa for the synchronous TrackPopupMenu in Windows? AlanKley 2008-10-23T04:50:26Z 2008-10-23T04:50:26Z I'm not having much luck. The only event mask that makes sense is NSApplicationDefined; when the Menu is dismissed no event is returned. Menu items are disabled without a valid View specified which brings me back to requiring a View. Also can't control where Menu appears shows up at 0,0 always) http://stackoverflow.com/questions/227935/is-there-an-equivalent-technique-in-cocoa-for-the-synchronous-trackpopupmenu-in-w/227975#227975 Comment by AlanKley on Is there an equivalent technique in Cocoa for the synchronous TrackPopupMenu in Windows? AlanKley 2008-10-23T01:50:18Z 2008-10-23T01:50:18Z Thanks Ben. I'm aware of the &quot;proper&quot; way but don't want to re-architect some cross-platform code. A function call with the implementation hidden will serve me well. I'll give your suggestion a try. http://stackoverflow.com/questions/227797/can-you-detect-a-ctrl-click-context-menu-request-in-the-mousedown-event/227816#227816 Comment by AlanKley on Can you detect a ctrl-click (context menu) request in the mouseDown event? AlanKley 2008-10-22T22:49:31Z 2008-10-22T22:49:31Z Duh. I don't know how I missed that event. Thanks. http://stackoverflow.com/questions/180601/using-super-in-c Comment by AlanKley on Using "super" in C++ AlanKley 2008-10-22T14:49:54Z 2008-10-22T14:49:54Z Awesome! Exactly what I was looking for. Don't think I've ever needed to use this technique until now. Excellent solution for my cross-platform code.