User GregUzelac - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:38:56Zhttp://stackoverflow.com/feeds/user/27068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/353024/mfc-carchive-to-xml0MFC carchive to xmlGregUzelac2008-12-09T15:02:14Z2008-12-11T21:05:54Z
<p>We have a legacy app that uses MFC's CArchive. I am researching saving the data in XML vs. binary. I have looked several libraries such as:</p>
<ul>
<li>Boost</li>
<li><a href="http://www.codeproject.com/KB/XML/xmlize.aspx" rel="nofollow">http://www.codeproject.com/KB/XML/xmlize.aspx</a></li>
<li><a href="http://www.ucancode.net/faq/Visual-C-MFC-XML-Example.htm" rel="nofollow">http://www.ucancode.net/faq/Visual-C-MFC-XML-Example.htm</a></li>
<li><a href="http://www.codeguru.com/cpp/data/data-misc/xml/article.php/c4567" rel="nofollow">http://www.codeguru.com/cpp/data/data-misc/xml/article.php/c4567</a></li>
</ul>
<p>They are nice, and offer many advantages above & beyond MFC's CArchive.</p>
<p>The main goal of the effort (other than an XML store) is to minimize code changes to this legacy app. I don't need new/improved serialization functionality for this project, and ideally, I could change a few CArchive objects to CXmlArchive and, like a puff of orange smoke, the store is XML.</p>
<p>Do you know of an existing library that meets the above requirements?</p>
http://stackoverflow.com/questions/293368/vb6-open-file-for-append-issue-path-not-found/294772#2947720Answer by GregUzelac for vb6 Open File For Append issue Path Not FoundGregUzelac2008-11-17T02:46:44Z2008-12-01T00:17:38Z<p>You can open a file that doesn't exist. I tried it with:</p>
<pre><code> Open "c:\temp\test.txt" & Str(0) For Output As #1
Close #1
</code></pre>
<p>When it ran it created c:\temp\test.txt 0</p>
<p>Note that I added "As #1" to the Open statement, and taht Str(0) adds a leading space for the optional minus sign (CStr(0) doens't add a leading space)</p>
http://stackoverflow.com/questions/322069/sendkeys-in-vb6/329657#3296570Answer by GregUzelac for Sendkeys in vb6GregUzelac2008-12-01T00:10:32Z2008-12-01T00:10:32Z<p>I made a vb6 test app. with 1 form, 1 default button, 1 timer:</p>
<pre><code>Private Sub Command1_Click()
Debug.Print CStr(Now) + " Command1"
End Sub
Private Sub Timer1_Timer()
Debug.Print CStr(Now) + " Sendkeys"
SendKeys "{Enter}"
End Sub
</code></pre>
<p>It seemed to work when sending to itself.
11/30/2008 6:11:38 PM Sendkeys
11/30/2008 6:11:38 PM Command1
11/30/2008 6:11:43 PM Sendkeys
11/30/2008 6:11:43 PM Command1
11/30/2008 6:11:48 PM Sendkeys
11/30/2008 6:11:48 PM Command1</p>
<p>Did you want to send to another process?</p>
http://stackoverflow.com/questions/317860/collection-type-for-representing-a-hierarchial-structure-in-net-3-5/329504#3295040Answer by GregUzelac for Collection type for representing a hierarchial structure in .Net 3.5GregUzelac2008-11-30T22:24:31Z2008-11-30T22:36:43Z<p>How about making your own node that looks something like:</p>
<pre><code> class Node<T> {
public T Item;
public LinkedList<T> Children;
}
</code></pre>
<p>Then apply Node recursively, as needed</p>
http://stackoverflow.com/questions/327881/mru-list-in-visual-studio-is-missing/329088#3290882Answer by GregUzelac for MRU list in Visual studio is missingGregUzelac2008-11-30T17:22:14Z2008-11-30T20:51:27Z<p>You might run RegMon / FileMon (ProcessMon) from SysInternals as to ensure it is access the correct path, and that there are not permissions problems, etc</p>
http://stackoverflow.com/questions/328262/what-was-the-purpose-of-the-first-application-you-developed/328390#3283901Answer by GregUzelac for What was the purpose of the first application you developed?GregUzelac2008-11-30T03:26:32Z2008-11-30T03:26:32Z<p>The first app at my first real job (circa 84) was a "database" app to manage a 9-track magnetic tape library. If you are young, see <a href="http://www.bobndenise.com/computers/3420%20tape%203480%20cart.jpg" rel="nofollow">http://www.bobndenise.com/computers/3420%20tape%203480%20cart.jpg</a>. It was written in FORTRAN & JCL, and made use a Merge-Sort API. The platform was a 24-bit Harris mini computer.</p>
http://stackoverflow.com/questions/290037/exporting-a-unicode-csv-comma-separated-file-to-either-excel-2003-or-excel-200/294829#2948290Answer by GregUzelac for Exporting a Unicode .csv (comma separated) file to either Excel 2003 Or Excel 2007 results in all columns ending up in the first column in ExcelGregUzelac2008-11-17T03:37:41Z2008-11-17T03:37:41Z<p>Do you know if the CSV file has a byte-order mark header? Maybe it doesn't have a BOM, or its not the correct BOM for the locale.</p>
http://stackoverflow.com/questions/291117/multilingual-winforms-in-net-opinions-and-suggestions/294801#2948010Answer by GregUzelac for Multilingual Winforms in .Net - opinions and suggestionsGregUzelac2008-11-17T03:11:40Z2008-11-17T03:11:40Z<p>It is a pain, but its not hard. Within VS2008's WinForm designer, select the form, view its properties and set Localizable=True (if you view the partial class/code behind file you will see a new line that looks something like</p>
<pre><code> resources.ApplyResources(this, "$this")
</code></pre>
<p>Then, for each locale you want to support, select Language, and localize any changes needed over the Default local.</p>
<p>I believe Windows allows the user to specify a different locale for a specified application. I last tried this with Windows 2000.</p>
http://stackoverflow.com/questions/291273/how-to-make-visual-studios-settings-view-show-lists-better/294787#2947870Answer by GregUzelac for How to make Visual Studio's Settings view show lists better?GregUzelac2008-11-17T02:57:00Z2008-11-17T02:57:00Z<p>I don't understand "shows the XML source". Can you clarify the question?</p>
http://stackoverflow.com/questions/291792/win32-select-all-on-edit-ctrl-textbox/294780#2947800Answer by GregUzelac for win32 select all on edit ctrl (textbox)GregUzelac2008-11-17T02:52:17Z2008-11-17T02:52:17Z<p>Why not add an accelerator for Ctrl+a to SelectAll?</p>
http://stackoverflow.com/questions/281605/use-a-separate-scroll-bar-for-a-textbox/293267#2932670Answer by GregUzelac for Use a separate scroll bar for a textboxGregUzelac2008-11-16T00:04:57Z2008-11-16T00:04:57Z<p>We have been using WPF in our most recent project. Is WPF an option for you? If yes, it appears as if everything UI can be altered in WPF apps. We use 2 UI artists. One works in in Adope Photoshop, then converts the output to XAML. The second works in Expression Blend, which natively produces XAML.</p>
http://stackoverflow.com/questions/289208/anyone-experience-vs2008-inc-sp1-ignoring-or-losing-breakpoints-randomly/293220#2932201Answer by GregUzelac for Anyone experience VS2008 (inc SP1) ignoring or losing Breakpoints randomly?GregUzelac2008-11-15T23:22:01Z2008-11-15T23:22:01Z<p>We saw BP issues with SP1. We reported it to Conenct (https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=363453) and MS has since sent us a DLL to fix it (seems to work). I expect MS will release a patch soon.</p>
<p>Since you has issues w/o SP1, it may or may not help</p>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/293205#2932053Answer by GregUzelac for What's Your Biggest Visual Studio 2008 Annoyance?GregUzelac2008-11-15T23:11:53Z2008-11-15T23:11:53Z<p>VS2008 SP1 caused more problems that it fixed for our team. I am trying to work with MS via Connect, but progress is slloooowwwwwww.
1) IDE disappears if you have a pane floated (Callstack, etc) and you stop debugging. Already in Connect and MS claims we must wait for VS2010.
2) Break points are not hit, or breaks on random x86 instructions in a C# project. We have a possible fix from MS
3) IDE disappers when editing cs proj props, and certain xaml files are open. MS escalated this to their dev team
4) Other cases where IDE disappears/dies</p>
<p>Our productivity dropped a lot after SP1. No s/w is perfect, not mine nor their's</p>
http://stackoverflow.com/questions/292991/allow-vertical-scrolling-in-listbox-when-it-is-disabled-vb6/293196#2931961Answer by GregUzelac for Allow vertical scrolling in listbox, when it is disabled (VB6)GregUzelac2008-11-15T23:01:32Z2008-11-15T23:01:32Z<p>Speaking of hacks, what if you enable the scrollbar when the mouse is moving over the scroll bar?</p>
<p>Or maybe ... place another scroll bar over the ListBox's SB, and use APIs to scoll the disabled LB.</p>
http://stackoverflow.com/questions/220507/clr-detected-an-invalid-program-when-calling-generic-methods/220532#2205320Answer by GregUzelac for "CLR detected an invalid program." when calling Generic MethodsGregUzelac2008-10-21T02:03:58Z2008-10-21T02:03:58Z<p>Is this for ASP.NET, WinForms, or what? What is the GridUtils namespace?</p>
http://stackoverflow.com/questions/220515/how-to-intercept-dll-method-calls/220524#2205240Answer by GregUzelac for How to intercept dll method calls?GregUzelac2008-10-21T01:55:47Z2008-10-21T01:55:47Z<p>Could you offer some more details? Who languages are used, etc?</p>
http://stackoverflow.com/questions/215144/why-is-predicate-sealed2Why is Predicate<> sealed?GregUzelac2008-10-18T15:11:10Z2008-10-20T08:34:48Z
<p>I wanted to derive a class from Predicate<IMyInterface>, but it appears as if Predicate<> is sealed. In my case I wanted to simply return the inverted (!) result of the designated function. I have other ways to accomplish the goal. My question is what might the MS designers have been thinking when deciding to seal Predicate<>?</p>
<p>Without much thought I came up with:
(a) simplified their testing, just a time vs cost trade off
(b) "no good" could come from deriving from Predicate<></p>
<p>What do you think?</p>
<p>Update: There are n predicates that are dynamically added to a list of Predicates during an initialization phase. Each is mutually exclusive (if Abc is added, NotAbc wont be added). I observed a pattern that looks like:</p>
<pre><code>bool Happy(IMyInterface I) {...}
bool NotHappy(IMyInterface I) { return !Happy(I); }
bool Hungry(IMyInterface I) {...}
bool NotHungry(IMyInterface I) { return !Hungry(I); }
bool Busy(IMyInterface I) {...}
bool NotBusy(IMyInterface I) { return !Busy(I); }
bool Smart(IMyInterface I) {...}
bool NotSmart(IMyInterface I) {...} //Not simply !Smart
</code></pre>
<p>Its not that I can't solve the problem, its that I wonder why I couldn't solve it a certain way.</p>
http://stackoverflow.com/questions/130604/looking-for-a-net-function-that-sums-up-number-and-instead-of-overflowing-simply/214525#2145250Answer by GregUzelac for Looking for a .NET Function that sums up number and instead of overflowing simply returns int.MaxValueGregUzelac2008-10-18T03:51:58Z2008-10-18T03:51:58Z<p>Does it overflow a lot, or is that an error condition? How about using try/catch (overflow exception)?</p>
http://stackoverflow.com/questions/79111/net-c-getting-child-windows-when-you-only-have-a-process-handle-or-pid/214519#2145190Answer by GregUzelac for .NET (C#): Getting child windows when you only have a process handle or PID?GregUzelac2008-10-18T03:49:05Z2008-10-18T03:49:05Z<p>You may find that if you call .Refresh() that you get the new top-level window.</p>
http://stackoverflow.com/questions/85283/how-to-avoid-garbage-collection-in-real-time-c-application/214488#2144881Answer by GregUzelac for How to avoid garbage collection in real time C# application ?GregUzelac2008-10-18T03:25:31Z2008-10-18T03:25:31Z<p>How intensive is the app? I wrote an app that captures 3 sound cards (Managed DirectX, 44.1KHz, Stereo, 16-bit), in 8KB blocks, and sends 2 of the 3 streams to another computer via TCP/IP. The UI renders an audio level meter and (smooth) scrolling title/artist for each of the 3 channels. This runs on PCs with XP, 1.8GHz, 512MB, etc. The App uses about 5% of the CPU.</p>
<p>I stayed clear of manually calling GC methods. But I did have to tune a few things that were wasteful. I used RedGate's Ant profiler to hone in on the wasteful portions. An awesome tool!</p>
<p>I wanted to use a pool of pre-allocated byte arrays, but the managed DX Assembly allocates byte buffers internally, then returns that to the App. It turned out that I didn't have to.</p>
http://stackoverflow.com/questions/120914/what-is-the-recomended-way-to-skin-an-entire-application-in-wpf/214471#2144711Answer by GregUzelac for What is the recomended way to skin an entire application in WPF?GregUzelac2008-10-18T02:58:50Z2008-10-18T02:58:50Z<p>Does anyone know if the recently-released Composite Application Guidance from the MS patterns & practices group offers skinning abilities? <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">http://www.codeplex.com/CompositeWPF</a></p>
http://stackoverflow.com/questions/125934/system-diagnostics-process-start-weird-behaviour/214381#2143810Answer by GregUzelac for System.Diagnostics.Process.Start weird behaviour.GregUzelac2008-10-18T01:50:11Z2008-10-18T01:50:11Z<p>I too noticed that in a project about 2 years ago. I called .Refresh() before requesting certain prop values. IT was a trial-and-error approach to find when I needed to call .Refresh().</p>
http://stackoverflow.com/questions/97646/how-do-i-determine-darker-or-lighter-color-variant-of-a-given-color/214350#2143502Answer by GregUzelac for How do I determine darker or lighter color variant of a given color?GregUzelac2008-10-18T01:26:57Z2008-10-18T01:26:57Z<p>I have used the ControlPaint.Dark() and .Light() in System.Windows.Forms.</p>
http://stackoverflow.com/questions/205555/the-most-sophisticated-way-for-creating-comma-separated-strings-from-a-collection/212266#2122660Answer by GregUzelac for The most sophisticated way for creating comma-separated Strings from a Collection/Array/List?GregUzelac2008-10-17T14:02:16Z2008-10-17T14:02:16Z<p>You may be able to use LINQ (to SQL), and you may be able to make use of the Dynamic Query LINQ sample from MS. <a href="http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx</a></p>
http://stackoverflow.com/questions/212155/memory-accessviolationexception-error-calling-dll-from-c/212200#2122000Answer by GregUzelac for Memory AccessViolationException Error Calling DLL From C#GregUzelac2008-10-17T13:49:41Z2008-10-17T13:49:41Z<p>It may be the [DllImport]. If you post the [DllImport] signature, and the DLL's ptototype, maybe we can spot a problem.</p>
<p>I read that the Managed, Native, and COM Interop Team released the PInvoke Interop Assistant on CodePlex. <a href="http://www.codeplex.com/clrinterop/Release/ProjectReleases.aspx?ReleaseId=14120" rel="nofollow">http://www.codeplex.com/clrinterop/Release/ProjectReleases.aspx?ReleaseId=14120</a></p>
http://stackoverflow.com/questions/148856/using-p-invoke-correctly/210984#2109844Answer by GregUzelac for Using P/Invoke correctlyGregUzelac2008-10-17T03:11:22Z2008-10-17T03:11:22Z<p>The Managed, Native, and COM Interop Team released the PInvoke Interop Assistant on codeplex. Maybe it can create the proper signature.
<a href="http://www.codeplex.com/clrinterop/Release/ProjectReleases.aspx?ReleaseId=14120" rel="nofollow">http://www.codeplex.com/clrinterop/Release/ProjectReleases.aspx?ReleaseId=14120</a></p>
http://stackoverflow.com/questions/118292/alternative-to-string-replace/210940#2109400Answer by GregUzelac for Alternative to String.ReplaceGregUzelac2008-10-17T02:37:30Z2008-10-17T02:37:30Z<p>Maybe you can reduce this down to a couple of lines, if desired, by using a Lambda expression and List<>.ForEach.</p>
<p>using System.Collections.Generic;</p>
<p>namespace ReplaceWithSpace {
class Program {
static void Main(string[] args) {
string someString = "#1, 1+1=2 $string$!";</p>
<pre><code> var charsToRemove = new List<char>(@"!@#$%^*_+=\");
charsToRemove.ForEach(c => someString = someString.Replace(c, ' '));
System.Diagnostics.Debug.Print(someString); //" 1, 1 1 2 string "
}
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/150805/best-way-to-track-down-a-memory-leak-c-only-visible-on-one-customers-box/210890#2108900Answer by GregUzelac for Best way to track down a memory leak (C#) only visible on one customer's boxGregUzelac2008-10-17T01:56:18Z2008-10-17T01:56:18Z<p>PerfMon can be helpful (<a href="http://dotnetdebug.net/2005/06/30/perfmon-your-debugging-buddy/" rel="nofollow">http://dotnetdebug.net/2005/06/30/perfmon-your-debugging-buddy/</a>). There are several counters that may help narrow down what resource is leaking, and at what rate, etc.</p>
http://stackoverflow.com/questions/161556/convert-idictionarystring-string-keys-to-lowercase-c/207294#2072941Answer by GregUzelac for Convert IDictionary<string, string> keys to lowercase (C#)GregUzelac2008-10-16T03:03:37Z2008-10-16T03:03:37Z<p>System.Collections.Specialized.StringDictionary() may help. MSDN states:</p>
<p>"The key is handled in a case-insensitive manner; it is translated to lowercase before it is used with the string dictionary.</p>
<p>In .NET Framework version 1.0, this class uses culture-sensitive string comparisons. However, in .NET Framework version 1.1 and later, this class uses CultureInfo.InvariantCulture when comparing strings. For more information about how culture affects comparisons and sorting, see Comparing and Sorting Data for a Specific Culture and Performing Culture-Insensitive String Operations."</p>
http://stackoverflow.com/questions/144530/or-equals/207258#2072580Answer by GregUzelac for == or .equals() GregUzelac2008-10-16T02:47:55Z2008-10-16T02:47:55Z<p>I have seen Object.ReferenceEquals() used in cases where one wants to know if two references refer to the same object</p>