User titanae - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:50:16Z http://stackoverflow.com/feeds/user/2387 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49555/becoming-agile 11 Becoming Agile titanae 2008-09-08T12:16:47Z 2009-11-16T17:13:59Z <p>Does anyone have any good techniques or examples on how to promote the benefits of Agile development practices in a waterfall driven corporate environment?</p> <p>We recently switched to feature based development, using trunk &amp; branch code management, we have a one project running well with scrum, but its hard to get this approach adopted by the wider masses. </p> <p>I just wondered if anyone else is battling the corporate machine?</p> http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application 8 Are .NET languages really making any kind of dent in consumer desktop applications? titanae 2008-09-17T11:03:56Z 2009-10-13T10:55:32Z <p><strong>Do <em>you</em> write consumer desktop applications with .NET languages?</strong> If so what type?</p> <p>My impression is that most consumer desktop applications are still native compiled applications in C, C++ and the like.</p> <p>Whilst .NET languages are growing in up take and popularity, do these new breed of applications ever break out of the enterprise &amp; web domain to become high street consumer applications?</p> <p>For example look at your desktop now? how many applications are written in .NET languages, Firefox? Microsoft Office? Thunderbird? iTunes? Microsoft Visual Studio?</p> <p>My company develops high end CAD/CAE applications we leverage new technology but our core development is still done with C++.</p> http://stackoverflow.com/questions/1314769/calling-c-from-native-c-without-clr-or-com 1 Calling C# from native C++, without /clr or COM? titanae 2009-08-22T00:33:06Z 2009-08-22T00:41:20Z <p>This question has been asked before, but I never found a truly satisfying solution -</p> <p>I have a class library written in C#, and I want to call it from a legacy native C++ application. The host application is truly native, compiled on Windows &amp; Linux, its a console application. So how can I make it call the C# class library, assuming using Microsoft .NET on Windows, and Mono on Linux.</p> <p>I have looked at SWIG and wrapping with COM interfaces on Windows, but is there a standard recognized solution that works cross platform? i.e. that is generic, works with both Microsoft .NET and Mono, a write once use everywhere implementation.</p> <p>Solutions should expose the full class interfaces from the C# domain to the C++ domain.</p> <p>Similar questions focus only on the Windows solutions, for example -</p> <p><a href="http://stackoverflow.com/questions/277809/call-c-methods-from-c-without-using-com">Call C# methods from C++ without using COM</a></p> http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service 0 File IO slow or cached in a web service? titanae 2009-08-14T01:59:23Z 2009-08-16T23:56:19Z <p>I am writing a simple web service using .NET, one method is used to send a chunk of a file from the client to the server, the server opens a temp file and appends this chunk. The files are quite large 80Mb, the net work IO seems fine, but the append write to the local file is slowing down progressively as the file gets larger. </p> <p>The follow is the code that slows down, running on the server, where aFile is a string, and aData is a byte[]</p> <pre><code> using (StreamWriter lStream = new StreamWriter(aFile, true)) { BinaryWriter lWriter = new BinaryWriter(lStream.BaseStream); lWriter.Write(aData); } </code></pre> <p>Debugging this process I can see that exiting the using statement is slower and slower.</p> <p>If I run this code in a simple standalone test application the writes are the same speed every time about 3 ms, note the buffer (aData) is always the same side, about 0.5 Mb.</p> <p>I have tried all sorts of experiments with different writers, system copies to append scratch files, all slow down when running under the web service.</p> <p>Why is this happening? I suspect the web service is trying to cache access to local file system objects, how can I turn this off for specific files?</p> <p>More information -</p> <p>If I hard code the path the speed is fine, like so </p> <pre><code> using (StreamWriter lStream = new StreamWriter("c:\\test.dat", true)) { BinaryWriter lWriter = new BinaryWriter(lStream.BaseStream); lWriter.Write(aData); } </code></pre> <p>But then it slow copying this scratch file to the final file destination later on -</p> <pre><code> File.Copy("c:\\test.dat", aFile); </code></pre> <p>If I use any varibale in the path it gets slow agin so for example -</p> <pre><code> using (StreamWriter lStream = new StreamWriter("c:\\test" + someVariable, true)) { BinaryWriter lWriter = new BinaryWriter(lStream.BaseStream); lWriter.Write(aData); } </code></pre> <p>It has been commented that I should not use StreamWriter, note I tried many ways to open the file using FileStream, none of which made any change when the code is running under the web service, I tried WriteThrough etc.</p> <p>Its the strangest thing I even tried this -</p> <pre><code>Write the data to file a.dat Spawn system "cmd" "copy /b b.dat + a.dat b.dat" Delete a.dat </code></pre> <p>This slows down the same way???? </p> <p>Makes me think the web server is running in some protected file IO environment catching all file operations in this process and child process, I can understand this if I was generating a file that might be later served to a client, but I am not, what I am doing is storing large binary blobs on disk, with a index/pointer to them stored in a database, if I comment out the write to the file the whole process fly's no performance issues at all.</p> <p>I started reading about web server caching strategies, makes me think is there a web.config setting to mark a folder as uncached? Or am I completely barking up the wrong tree.</p> http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1285681#1285681 0 Answer by titanae for File IO slow or cached in a web service? titanae 2009-08-16T23:56:19Z 2009-08-16T23:56:19Z <p>Well I found the root cause, "Microsoft Forefront Security", group policy has this running real time scanning, I could see the process goto 30% CPU usage when I close the file, killing this process and everything works the same speed, outside and inside the web service!</p> <p>Next task find a way to add an exclusion to MFS!</p> http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1277528#1277528 0 Answer by titanae for File IO slow or cached in a web service? titanae 2009-08-14T12:15:22Z 2009-08-14T12:15:22Z <p>Update....I replicated the basic code, no database, simple and it seems to work fine, so I suspect there is another reason, I will rest on it over the weekend....</p> <p>Here is the replicated server code -</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.IO; namespace TestWS { /// &lt;summary&gt; /// Summary description for Service1 /// &lt;/summary&gt; [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. // [System.Web.Script.Services.ScriptService] public class Service1 : System.Web.Services.WebService { private string GetFileName () { if (File.Exists("index.dat")) { using (StreamReader lReader = new StreamReader("index.dat")) { return lReader.ReadLine(); } } else { using (StreamWriter lWriter = new StreamWriter("index.dat")) { string lFileName = Path.GetRandomFileName(); lWriter.Write(lFileName); return lFileName; } } } [WebMethod] public string WriteChunk(byte[] aData) { Directory.SetCurrentDirectory(Server.MapPath("Data")); DateTime lStart = DateTime.Now; using (FileStream lStream = new FileStream(GetFileName(), FileMode.Append)) { BinaryWriter lWriter = new BinaryWriter(lStream); lWriter.Write(aData); } DateTime lEnd = DateTime.Now; return lEnd.Subtract(lStart).TotalMilliseconds.ToString(); } } </code></pre> <p>}</p> <p>And the replicated client code -</p> <pre><code> static void Main(string[] args) { Service1 s = new Service1(); byte[] b = new byte[1024 * 512]; for ( int i = 0 ; i &lt; 160 ; i ++ ) { Console.WriteLine(s.WriteChunk(b)); } } </code></pre> http://stackoverflow.com/questions/71065/migrating-from-stingray-objective-toolkit 0 Migrating from Stingray Objective Toolkit titanae 2008-09-16T10:32:56Z 2009-08-07T06:53:01Z <p>We have a collection of commercial MFC/C++ applications which we sell using <a href="http://www.roguewave.com/products/stingray.php" rel="nofollow">Stingray Objective Toolkit</a>, we have source code license and have ported it in the past to Solaris/IRIX/HP-UX/AIX using <a href="http://en.wikipedia.org/wiki/Bristol_Technology_Inc." rel="nofollow">Bristol Technologies WindU</a> (Windows API on UNIX, including MFC). </p> <p>Any long story short recently about 18 months ago we ported Stingray to Win64, but a long a tedious task, during this time I did some research on commercial and open source alternative MFC extension libraries things like <a href="http://www.codeproject.com/KB/MFC/UltimateToolbox.aspx" rel="nofollow">Ultimate Toolbox</a> and <a href="http://www.prof-uis.com/" rel="nofollow">Prof-UIS</a>.</p> <ul> <li>Has anyone else used Stingray and moved to an alternative? </li> <li>If so which one would you suggest? </li> <li>What were the main perils of the move?</li> </ul> http://stackoverflow.com/questions/49610/64-bit-tools-like-boundschecker-purify 7 64 bit tools like BoundsChecker & Purify titanae 2008-09-08T12:50:25Z 2009-07-31T15:50:19Z <p>For many years I have used two great tools <a href="http://www.compuware.com/products/devpartner/visualc.htm" rel="nofollow">BoundsChecker</a> &amp; <a href="http://www-01.ibm.com/software/awdtools/purify/win/" rel="nofollow">Purify</a>, but the developers of these applications have let me down, they no longer put effort into maintaining them or developing them. We have corporate accounts with both companies, and they both tell me that they have no intention of producing versions to support 64 bit applications.</p> <p>Can anyone recommend either open source or commercial alternatives that support 64 bit native C++/MFC applications?</p> http://stackoverflow.com/questions/49610/64-bit-tools-like-boundschecker-purify/920100#920100 2 Answer by titanae for 64 bit tools like BoundsChecker & Purify titanae 2009-05-28T10:00:17Z 2009-05-28T10:00:17Z <p>BoundsChecker 9.01 now supports VC2008 and x64 bit, at last.</p> http://stackoverflow.com/questions/81727/cleanest-way-to-stop-a-process-on-win32/82770#82770 2 Answer by titanae for Cleanest way to stop a process on Win32 ? titanae 2008-09-17T12:48:42Z 2009-02-26T10:35:47Z <p>If you use thread, a simple solution is to use a named system event, the thread sleeps on the event waiting for it to be signaled, the control application can signal the event when it wants the client applications to quit.</p> <p>For the UI application it (the thread) can post a message to the main window, WM_ CLOSE or QUIT I forget which, in the console application it can issue a CTRL-C or if the main console code loops it can check some exit condition set by the thread. </p> <p>Either way rather than finding the client applications an telling them to quit, use the OS to signal they should quit. The sleeping thread will use virtually no CPU footprint provided it uses WaitForSingleObject to sleep on.</p> http://stackoverflow.com/questions/190263/localization-testing-formatting-all-strings-with-xxxxx 1 Localization testing, formatting all strings with XXXXX titanae 2008-10-10T05:45:27Z 2009-02-23T15:30:57Z <p>We are trying to look at optimizing our localization testing. </p> <p>Our QA group had a suggestion of a special mode to force all strings from the resources to be entirely contained of X. We already API hijack LoadString, and the MFC implementation of it, so doing it should not be a major hurdle. </p> <p>My question is how would you solve the formatting issues?</p> <pre><code>Examples - CString str ; str . LoadString ( IDS_MYSTRING ) ; where IDS_MYSTRING is "Hello World", should return "XXXXX XXXXX" where IDS_MYSTRING is "Hello\nWorld", should return "XXXXX\nXXXXX" where IDS_MYSTRING is "Hello%dWorld", should return "XXXXX%dXXXXX" where IDS_MYSTRING is "Hello%.2fWorld", should return "XXXXX%.2fXXXXX" where IDS_MYSTRING is "Hello%%World", should return "XXXXX%%XXXXX" </code></pre> <p>So in summary the string should work if used in a printf or Format statement, it should honor escape characters.</p> <p>So this is a pure code question, C++/MFC, </p> <pre><code>CString ConvertStringToXXXX ( const CString&amp; aSource ) { CString lResult = aSource ; // Insert your code here return lResult ; } </code></pre> <p>I know this could be done using tools on the .RC files, but we want to build English, then run like so -</p> <p>application -L10NTEST</p> http://stackoverflow.com/questions/108047/whats-the-best-ribbon-ui-control-to-retro-fit-to-a-legacy-mfc-application-build-w 2 Whats the best Ribbon UI control to retro fit to a legacy MFC application build with VC2005? titanae 2008-09-20T12:42:54Z 2009-02-05T04:37:41Z <p>What experience have you had with introducing a Ribbon style control to legacy MFC applications? </p> <p>I know it exists in the new VC2008 Feature Pack, but changing compilers from VC2005 is a big deal for our source base and integration to our environment, Intel FORTRAN, ClearCase, many 3rd libraries.</p> <p>There are quiet a few different commerical implementations, most focusing on C#/VB .NET, and only a few for native C++ MFC.</p> <p>I have read all the usual reviews found by Google most are quiet old now, so I am interested to here from people who have actually done it, been through the pain barrier, released a legacy application with VC2005 and a Ribbon UI.</p> <p>We currently use a very old version of Stingray Objective Toolkit to provide our MFC extensions like customizable toolbars and docking windows etc. </p> http://stackoverflow.com/questions/53766/daily-build 4 Daily Build titanae 2008-09-10T10:51:57Z 2008-12-10T08:03:00Z <p>OK, so we all know the daily build is the heart beat of a project, but whats the single best way of automating it? </p> <p>We have perl scripts wrapping our pipeline which includes ClearCase, VS2005 (C++), Intel FORTRAN, Inno setup. We use cron jobs on UNIX to schedule the build, and host a simple Apache web server to view and monitor the build. All in all its rather complex, I would like to know whats the best off the shelf solution that people use?</p> <p>And yes I did say FORTRAN no escaping it sometimes, it works, no point doing a huge re-implementation project for some tried and tested FEA code that just works.</p> http://stackoverflow.com/questions/329007/how-to-reduce-linkage-time-for-large-project-written-in-native-visual-c/330159#330159 3 Answer by titanae for How to reduce linkage time for large project written in native Visual C++ ? titanae 2008-12-01T06:31:00Z 2008-12-05T17:07:41Z <p>Refactor!!! Split the large DLL into smaller modules, do this using layers of interfaces, create an architecture when you split "huge" DLL into smaller ones as opposed to taking the first 5 files etc. Map the DLL hierarchy carefully level 0 DLL's are standalone, level 1 DLL's may depend on 1 or more level 0, etc.</p> <p>The effort of doing this will pay off, imagine only 10 developers waiting just 6 minutes a day to link, 10*6 == 1 hour * 5 days a week, this means your losing over half a days development time a week, this should be more than enough to justify a break from feature development to get your ducks in order. </p> <p>Also you mentioned libraries, if you have the source make these DLL's too, this will payback very quickly when you enable edit &amp; continue.</p> http://stackoverflow.com/questions/318154/what-is-the-best-way-to-track-and-lower-gd-handles/329889#329889 3 Answer by titanae for What is the best way to track and lower GD handles? titanae 2008-12-01T02:46:16Z 2008-12-01T02:46:16Z <p>Two links worth reading...</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc301756.aspx" rel="nofollow">Resource Leaks: Detecting, Locating, and Repairing Your Leaky GDI Code</a></p> <p><a href="http://www.relisoft.com/win32/GdiLeaks.html" rel="nofollow">GDI Resource Leaks</a></p> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110063#110063 3 Answer by titanae for How do you protect your software from illegal distribution? titanae 2008-09-21T02:32:04Z 2008-11-29T06:59:09Z <p>Generally there are two systems that often get confused -</p> <ul> <li>Licensing or activation tracking, legal legitimate usage</li> <li>Security preventing illegal usage</li> </ul> <p>For licensing use a commercial package, <a href="http://en.wikipedia.org/wiki/FLEXlm" rel="nofollow">FlexLM</a> many companies invest huge sums of money into licensing think they also get security, this is a common mistake key generators for these commercial packages are prolifically abundant.</p> <p>I would only recommend licensing if your selling to corporations who will legitimately pay based on usage, otherwise its probably more effort than its worth.</p> <p>Remember that as your products become successful, all and every licensing and security measure will be breached eventually. So decide now if it is really worth the effort.</p> <p>We implemented a clean room clone of FlexLM a number of years ago, we also had to enhance our applications against binary attacks, its long process, you have to revisit it every release. It also really depends on which global markets you sell too, or where your major customer base is as to what you need to do.</p> <p>Check out another of my answers on <a href="http://stackoverflow.com/questions/106347/secure-dll-with-license-file#107503">securing a DLL</a>.</p> http://stackoverflow.com/questions/310548/windows-under-what-circumstances-might-setevent-not-return-immediately/310860#310860 0 Answer by titanae for Windows: Under what circumstances might SetEvent() not return immediately? titanae 2008-11-22T04:30:48Z 2008-11-22T04:36:55Z <p>Why do you need to set an event in the slave thread to trigger to the master thread that the thread is done? just exit the thread, the calling master thread should wait for the worker thread to exit, example pseudo code -</p> <pre><code>Master { TerminateEvent = CreateEvent ( ... ) ; ThreadHandle = BeginThread ( Slave, (LPVOID) TerminateEvent ) ; ... Do some work ... SetEvent ( TerminateEvent ) ; WaitForSingleObject ( ThreadHandle, SOME_TIME_OUT ) ; CloseHandle ( TerminateEvent ) ; CloseHandle ( ThreadHandle ) ; } Slave ( LPVOID ThreadParam ) { TerminateEvent = (HANDLE) ThreadParam ; while ( WaitForSingleObject ( TerminateEvent, SOME__SHORT_TIME_OUT ) == WAIT_TIMEOUT ) { ... Do some work ... } } </code></pre> <p>There are lots of error conditions and states to check for but this is the essence of how I normally do it.</p> <p>If you can get hold of it, get this book, it changed my life with respect to Windows development when I first read it many, many years ago.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/1556156774" rel="nofollow">Advanced Windows: The Developer's Guide to the Win32 Api for Windows Nt 3.5 and Windows 95 (Paperback), by Jeffrey Richter (Author)</a></p> http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305032#305032 1 Answer by titanae for Annoying or idiotic naming conventions? titanae 2008-11-20T11:42:25Z 2008-11-20T11:42:25Z <p>In modern development languages and environments, C++ included, scope is more important than type, the compiler will inform you of type miss matches but not scope. To this end I favor a simple but effective naming convention -</p> <ul> <li>a = argument</li> <li>m = member</li> <li>l = local</li> <li>g = global</li> </ul> <p>Very simple example -</p> <pre><code>class Foo { private: int mBar ; public : Foo ( int aBar ) : mBar ( aBar ) { } int GetFooBared ( int aMultiplier ) { int lBar = mBar * aMultiplier ; return lBar ; } } ; static Foo gFoo ( 10 ) ; int main ( int aArgc, char* aArgv [] ) { int lFoo = gFoo . GetFooBared ( 10 ) ; return lFoo ; } </code></pre> http://stackoverflow.com/questions/190263/localization-testing-formatting-all-strings-with-xxxxx/207988#207988 0 Answer by titanae for Localization testing, formatting all strings with XXXXX titanae 2008-10-16T09:57:54Z 2008-10-16T09:57:54Z <p>My final solution was prefixing the string like so "*[resource instance name]original string". It works really well, it shows likely strings that will not fit in say German.</p> <p>Example:</p> <p>Original string from appres.dll, "My Application"</p> <p>New string from appres.dll, "*[appres]My Application".</p> <p>Thanks for all the suggestions.</p> http://stackoverflow.com/questions/204334/how-to-manipulate-dlgtemplate-programmatically/207974#207974 0 Answer by titanae for How to manipulate DLGTEMPLATE programmatically? titanae 2008-10-16T09:52:19Z 2008-10-16T09:52:19Z <p>Thanks all, I actually had 24 hours rest on the problem, then went with a global windows hook filtering WM_INITDIALOG which was a much simpler method, worked out just fine, no API hooking required, 2 pages of code down to just a few lines.</p> <p>Thanks for all the answers.</p> http://stackoverflow.com/questions/204334/how-to-manipulate-dlgtemplate-programmatically 1 How to manipulate DLGTEMPLATE programmatically? titanae 2008-10-15T11:05:24Z 2008-10-16T09:52:19Z <p><strong>What?</strong></p> <p>I have a DLGTEMPLATE loaded from a resource DLL, how can I change the strings assigned to the controls at runtime programmatically?</p> <p>I want to be able to do this before the dialog is created, such that I can tell that the strings on display came from the resource DLL, and not from calls to SetWindowText when the dialog is initialized.</p> <p>Google has found examples of creating DLGTEMPLATE in code, or twiddling simple style bits but nothing on editing the strings in memory.</p> <p><strong>How?</strong></p> <p>I am doing this by hooking the Dialog/Property Sheet creation API's. Which gives me access to the DLGTEMPLATE before the actual dialog is created and before it has a HWND. </p> <p><strong>Why?</strong></p> <p>I want to be able to do runtime localization, and localization testing. I already have this implemented for loading string (including the MFC 7.0 wrapper), menus and accelerator tables, but I am struggling to handle dialog/property sheet creation.</p> <p>Code examples would be the perfect answer, ideally a class to wrap around the DLGTEMPLATE, if I work out my own solution I will post it.</p> http://stackoverflow.com/questions/187567/how-can-i-stop-my-mfc-application-from-calling-onfilenew-when-it-starts/190286#190286 2 Answer by titanae for How can I stop my MFC application from calling OnFileNew() when it starts? titanae 2008-10-10T05:56:27Z 2008-10-10T05:56:27Z <p>This works, it maintains printing/opening from the shell etc.</p> <pre><code>// Parse command line for standard shell commands, DDE, file open CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); if ( cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew ) { cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing ; } // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; </code></pre> http://stackoverflow.com/questions/107552/whats-the-best-way-to-get-started-with-server-virtualization 3 Whats the best way to get started with server virtualization? titanae 2008-09-20T07:46:55Z 2008-09-24T07:54:22Z <p>We recently bought a new rack and set of servers for it, we want to be able to redeploy these boxes as build servers, QA regression test servers, lab re-correlation servers, simulation servers, etc.</p> <p>We have played a bit with VMWare, VirtualPC, VirtualBox etc, creating a virtual build server, but we came across a lot of issues when we tried to copy it for others to use, having to reconfigure every new copy of the VM.</p> <p>We are using Windows XP x86/x64 and Windows Vista x86/x64, so I had to rename the machine, join the domain etc for every new copy.</p> <p>Ideally we just want to be able to add a new box, deploy a thin boot strap OS (Linux is fine here) to get the VM up an running, then use it.</p> <p>One other thing we have limited to no budget, so free is best.</p> <p>I would like to understand others experiences in doing the same thing.</p> <p>FYI, I am not in systems IT, this we are group of software engineers trying to set this up.</p> <p>Any links to good tutorials would be great.</p> http://stackoverflow.com/questions/110249/building-and-deploying-dll-on-windows-sxs-manifests-and-all-that-jazz/113022#113022 3 Answer by titanae for Building and deploying dll on windows: SxS, manifests and all that jazz titanae 2008-09-22T03:20:49Z 2008-09-22T12:38:30Z <p>We use a simple include file in all our applications &amp; DLL's, vcmanifest.h, then set all projects to embedded the manifest file.</p> <p>vcmanifest.h</p> <pre><code>/*----------------------------------------------------------------------------*/ #if _MSC_VER &gt;= 1400 /*----------------------------------------------------------------------------*/ #pragma message ( "Setting up manifest..." ) /*----------------------------------------------------------------------------*/ #ifndef _CRT_ASSEMBLY_VERSION #include &lt;crtassem.h&gt; #endif /*----------------------------------------------------------------------------*/ #ifdef WIN64 #pragma message ( "processorArchitecture=amd64" ) #define MF_PROCESSORARCHITECTURE "amd64" #else #pragma message ( "processorArchitecture=x86" ) #define MF_PROCESSORARCHITECTURE "x86" #endif /*----------------------------------------------------------------------------*/ #pragma message ( "Microsoft.Windows.Common-Controls=6.0.0.0") #pragma comment ( linker,"/manifestdependency:\"type='win32' " \ "name='Microsoft.Windows.Common-Controls' " \ "version='6.0.0.0' " \ "processorArchitecture='" MF_PROCESSORARCHITECTURE "' " \ "publicKeyToken='6595b64144ccf1df'\"" ) /*----------------------------------------------------------------------------*/ #ifdef _DEBUG #pragma message ( __LIBRARIES_ASSEMBLY_NAME_PREFIX ".DebugCRT=" _CRT_ASSEMBLY_VERSION ) #pragma comment(linker,"/manifestdependency:\"type='win32' " \ "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".DebugCRT' " \ "version='" _CRT_ASSEMBLY_VERSION "' " \ "processorArchitecture='" MF_PROCESSORARCHITECTURE "' " \ "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"") #else #pragma message ( __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT=" _CRT_ASSEMBLY_VERSION ) #pragma comment(linker,"/manifestdependency:\"type='win32' " \ "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".CRT' " \ "version='" _CRT_ASSEMBLY_VERSION "' " \ "processorArchitecture='" MF_PROCESSORARCHITECTURE "' " \ "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"") #endif /*----------------------------------------------------------------------------*/ #ifdef _MFC_ASSEMBLY_VERSION #ifdef _DEBUG #pragma message ( __LIBRARIES_ASSEMBLY_NAME_PREFIX ".MFC=" _CRT_ASSEMBLY_VERSION ) #pragma comment(linker,"/manifestdependency:\"type='win32' " \ "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".MFC' " \ "version='" _MFC_ASSEMBLY_VERSION "' " \ "processorArchitecture='" MF_PROCESSORARCHITECTURE "' " \ "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"") #else #pragma message ( __LIBRARIES_ASSEMBLY_NAME_PREFIX ".MFC=" _CRT_ASSEMBLY_VERSION ) #pragma comment(linker,"/manifestdependency:\"type='win32' " \ "name='" __LIBRARIES_ASSEMBLY_NAME_PREFIX ".MFC' " \ "version='" _MFC_ASSEMBLY_VERSION "' " \ "processorArchitecture='" MF_PROCESSORARCHITECTURE "' " \ "publicKeyToken='" _VC_ASSEMBLY_PUBLICKEYTOKEN "'\"") #endif #endif /* _MFC_ASSEMBLY_VERSION */ /*----------------------------------------------------------------------------*/ #endif /* _MSC_VER */ /*----------------------------------------------------------------------------*/ </code></pre> http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation/114563#114563 4 Answer by titanae for Why shouldn't I use "Hungarian Notation"? titanae 2008-09-22T12:31:13Z 2008-09-22T12:31:13Z <p>Isn't scope more important than type these days, e.g.</p> <pre><code>* l for local * a for argument * m for member * g for global * etc </code></pre> <p>With modern techniques of refactoring old code, search and replace of a symbol because you changed its type is tedious, the compiler will catch type changes, but often will not catch incorrect use of scope, sensible naming conventions help here.</p> http://stackoverflow.com/questions/113818/class-library-with-support-for-several-persistence-strategies/113973#113973 0 Answer by titanae for Class library with support for several persistence strategies titanae 2008-09-22T09:27:27Z 2008-09-22T09:27:27Z <p>I would avoid serialization, IMHO, we implemented this for one of our applications in MFC back in 1995, we were smart enough to use independent object versioning, and file versioning, but you end up with a lot of old messy code around after time.</p> <p>Imagine certain scenarios, deprecating classes, deprecating members, etc, each presents a new problem. Now we use compreseds "XML type" streams, we can add new data and maintain backward compatibility.</p> <p>Reading and writing the file is abstracted from mapping the data to the objects, we can now switch file formats, add importers/exporters without modification to our core business objects.</p> <p>That being said some developers love serialization, my own encounters is that switching code base, platforms, languages, toolkits all bring along a lot of problems, reading and writing your data should not be one of them.</p> <p>Additionally using a standard data format, with some proprietary key, means its a lot easier to work with 3rd parties.</p> http://stackoverflow.com/questions/112433/should-i-use-define-enum-or-const/113370#113370 0 Answer by titanae for Should I use #define, enum or const? titanae 2008-09-22T05:58:03Z 2008-09-22T05:58:03Z <p>Based on <a href="http://en.wikipedia.org/wiki/KISS_principle" rel="nofollow">KISS</a>, <a href="http://en.wikipedia.org/wiki/Coupling_(computer_science)" rel="nofollow">high cohesion and low coupling</a>, ask these questions -</p> <ul> <li>Who needs to know? my class, my library, other classes, other libraries, 3rd parties</li> <li>What level of abstraction do I need to provide? Does the consumer understand bit operations.</li> <li>Will I have have to interface from VB/C# etc?</li> </ul> <p>There is a great book "<a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow">Large-Scale C++ Software Design</a>", this promotes base types externally, if you can avoid another header file/interface dependancy you should try to. </p> http://stackoverflow.com/questions/110833/dynamically-importing-a-c-class-from-a-dll/110846#110846 0 Answer by titanae for Dynamically importing a C++ class from a DLL titanae 2008-09-21T11:59:30Z 2008-09-21T12:05:30Z <p>I normally declare an interface base class, use this declaration in my application, then use LoadLibrary, GetProcAddress to get the factory function. The factor always returns pointer of the interface type.</p> <p>Here is a practical example, <a href="http://www.codeproject.com/KB/docview/docviewfromdll.aspx" rel="nofollow">exporting an MFC document/view from a DLL</a>, dynamically loaded</p> http://stackoverflow.com/questions/110814/best-graphic-library-for-net-mono/110818#110818 4 Answer by titanae for Best graphic library for .NET/Mono titanae 2008-09-21T11:42:26Z 2008-09-21T11:42:26Z <p>OpenGL would be my choice, .NET bindings exist from many open source wrappers, with OpenGL your set for cross platform. </p> http://stackoverflow.com/questions/110008/windows-licensing-question/110079#110079 0 Answer by titanae for Windows Licensing Question titanae 2008-09-21T02:43:25Z 2008-09-21T02:43:25Z <p>I would Google the ROI on Linux vs Windows for a commercial server, I have no option generally on this, but I have seen that long term they level out, in the grand scheme of things the initial cost of the Windows license is actually minimal and insignificant.</p> <p>Choose the best technology to solve the end users problem, document why, provide an evaluation report, include maintenance costs, development costs etc. When you do this the answer will be clear to you and your customer.</p> http://stackoverflow.com/questions/1314769/calling-c-from-native-c-without-clr-or-com/1314777#1314777 Comment by titanae on Calling C# from native C++, without /clr or COM? titanae 2009-08-22T00:51:55Z 2009-08-22T00:51:55Z Good answer, embedding Mono on Windows not really what I was looking for also it all looks very manual. You would have to write a lot of boiler plate code to expose an full interface to a library, it looks time consuming and fragile, reminds me of JNI. I was wondering if there is some sort of automated way, like SWIG or just exposing a COM interface. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1278616#1278616 Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-15T03:37:04Z 2009-08-15T03:37:04Z I am starting to think it might be GC working, since while the file is uploading multiple other clients are firing requests at the server which involve data extraction, I think I might need to use the &quot;using&quot; statement more liberally? I will find out next week. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1280086#1280086 Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-15T03:34:53Z 2009-08-15T03:34:53Z Possibly, but the scenario is the client is uploading data that must be stored in a file, once complete the client will ask the server to act on the data, the server does this by launching an external process on the server to process the data in the file. I could thread the write to the file, but eventually the client will have to sync with the server, client completed upload, server acknowledge receipt of file, client instruct server to process the file, their may be some delay in the later part since the client could upload multiple files. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1277528#1277528 Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T12:44:37Z 2009-08-14T12:44:37Z I think it might be VisualStudio, running the client in the debugger, and web service detached seems fast, running the opposite way round is slow i.e. debug web service, client detached! This makes sense sort of, VisualStudio trying to intercept everything...no convinced yet. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T12:02:30Z 2009-08-14T12:02:30Z yes, aData is byte[], out side server fast with variable path name. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T11:44:56Z 2009-08-14T11:44:56Z Simply put the following gets slower - Open file, seems not to matter how Seek end of file, either by open method or calling seek Write data to end of file Close file, here is where it progressively gets slower Yet the same code running out side the web service is blisteringly fast, I even moved the append to file code into a separate class library, it made no difference, i.e. fast outside the service, slow inside the service. Write files to same location/same disk, so it can't be fragmentation?? http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1276516#1276516 Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T11:36:54Z 2009-08-14T11:36:54Z I don't think so, to me it looks like the web server process is reading the entire file into cache when the file is closed. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service/1276989#1276989 Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T11:32:08Z 2009-08-14T11:32:08Z Yes/No, because StreamWriter opens the file, it closes it, I tried explicitly calling close, and using FileStream to open the file, they have no effect, when the StreamWriter gets disposed is when I see the slow down, 10 ms first append, 20 ms next etc, when the file gets beyond 10Mb it gets really slow over 2 seconds. http://stackoverflow.com/questions/1275672/file-io-slow-or-cached-in-a-web-service Comment by titanae on File IO slow or cached in a web service? titanae 2009-08-14T02:50:02Z 2009-08-14T02:50:02Z Is running from VisualStudio, ultimately it will be run from Cassini. I have tried locating the temp file in the system temp directory, and a folder under the root of the web service, the same slow down happens regardless, it looks like the web service is caching access to the file in case. http://stackoverflow.com/questions/193852/progress-string-parsing-in-c/193947#193947 Comment by titanae on Progress string parsing in C titanae 2008-10-27T11:51:18Z 2008-10-27T11:51:18Z Actually the syntax is fairly common, a lot of Windows API's work this way by design, think FindFirst &amp; FindNext. Whilst it looks odd at first the code is readable, it makes logical sense and does not need comments. http://stackoverflow.com/questions/204334/how-to-manipulate-dlgtemplate-programmatically/207974#207974 Comment by titanae on How to manipulate DLGTEMPLATE programmatically? titanae 2008-10-20T11:39:58Z 2008-10-20T11:39:58Z The source bases is just too large, many UI libraries are used in multiple applications, a global hook was much simpler. The code shared by others is pretty much it, the global hook just catches WM_INITDIALOG before the target DlgProc http://stackoverflow.com/questions/49610/64-bit-tools-like-boundschecker-purify/204185#204185 Comment by titanae on 64 bit tools like BoundsChecker & Purify titanae 2008-10-16T09:55:05Z 2008-10-16T09:55:05Z Yes, they told me that almost 12 months ago to the day, glad I did not hold my breath. http://stackoverflow.com/questions/204334/how-to-manipulate-dlgtemplate-programmatically/205935#205935 Comment by titanae on How to manipulate DLGTEMPLATE programmatically? titanae 2008-10-16T09:52:51Z 2008-10-16T09:52:51Z Thanks note quiet what I needed, but thanks for the reply http://stackoverflow.com/questions/190263/localization-testing-formatting-all-strings-with-xxxxx/190786#190786 Comment by titanae on Localization testing, formatting all strings with XXXXX titanae 2008-10-12T05:57:02Z 2008-10-12T05:57:02Z Actually we purchased your product a few years ago, I used to personally use it a lot, I think we may have to revisit it! whilst this solution would work, it changes happening on a daily basis, it still has the potential to introduce errors, dialogs or strings not in the L10N DLL. http://stackoverflow.com/questions/190263/localization-testing-formatting-all-strings-with-xxxxx/190366#190366 Comment by titanae on Localization testing, formatting all strings with XXXXX titanae 2008-10-10T07:32:49Z 2008-10-10T07:32:49Z Actually prefixing is a good idea, I will try this out next week, simple solutions are always better.