User OJ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T13:28:16Zhttp://stackoverflow.com/feeds/user/611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1664030/mvvm-command-routing-between-controls/1664143#16641431Answer by OJ for MVVM Command Routing Between ControlsOJ2009-11-02T22:27:50Z2009-11-02T22:27:50Z<p>You should create a command object which is a static object on a class that both the window and the control can see.</p>
<pre><code> public static class MyCommands
{
public static RoutedUICommend CoolCommand .....;
}
</code></pre>
<p>Then you can bind the control's Command property to the command object, for example:</p>
<pre><code><Button Command="cmd:MyCommands.CoolCommand" />
</code></pre>
<p>Then you simply need to handle the command binding at the window level using the CommandBinding XAML element.</p>
<pre><code><CommandBinding Command="cmd:MyCommands.CoolCommand" Executed="My_Handler" />
</code></pre>
http://stackoverflow.com/questions/1664026/wpf-change-styles-brush-color/1664114#16641141Answer by OJ for WPF Change Style's Brush ColorOJ2009-11-02T22:22:15Z2009-11-02T22:22:15Z<p>The easiest way to do this would be to use databinding instead. Bind the view to an object which has a property that contains the value of the colour you want to change. Then bind that property value to the gradient. When the button is clicked, modify that property and the databinding mechanism will update the colour on screen for you. Just make sure you either implement INotifyPropertyChanged or make the property a dependency property.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#15986601Answer by OJ for ASP.NET which type of collection should I use?OJ2009-10-21T04:03:14Z2009-10-21T04:03:14Z<p>Create a class, and store that class in a collection.</p>
<pre><code>class Search
{
public string Name { get; set; }
public List<string> State { get; set; }
public string Company { get; set; }
}
</code></pre>
<p>Then you can have multiple states per search. Add instances of this to List and away you to.</p>
http://stackoverflow.com/questions/1536205/running-another-program-in-windows-bat-file-and-not-create-child-process/1552400#15524001Answer by OJ for Running another program in Windows bat file and not create child process.OJ2009-10-12T02:18:05Z2009-10-12T02:18:05Z<p>Use:</p>
<pre><code>start cmd /c "your command"
</code></pre>
<p>Cheers.</p>
http://stackoverflow.com/questions/1408243/hosted-svn-repositoryhosting-com/1408273#14082731Answer by OJ for Hosted SVN - RepositoryHosting.comOJ2009-09-10T23:36:00Z2009-09-10T23:36:00Z<p>I'm not a hosted SVN fan (I'm not an SVN fan!) but I would say stick with your own internal hosting and perhaps back up to the cloud if you're worried about data loss.</p>
<p>I'm sure that most people haven't had an issue, so you're probably safe. But if you're that concerned, the only person to trust is yourself :)</p>
http://stackoverflow.com/questions/1408065/in-wpf-how-can-i-handle-an-event-in-an-itemscontrol-controltemplate/1408241#14082410Answer by OJ for In WPF, how can I handle an event in an ItemsControl ControlTemplateOJ2009-09-10T23:27:19Z2009-09-10T23:27:19Z<p>Instead of using button click events, create a new Command, bind the Command property of the Button to the Command you created, and then add a CommandBinding to your user control to handle the command when it is executed.</p>
<p>See <a href="http://www.switchonthecode.com/tutorials/wpf-tutorial-command-bindings-and-custom-commands" rel="nofollow">here</a> <a href="http://www.dev102.com/2008/12/10/using-command-binding-to-enhance-any-wpf-control/" rel="nofollow">for</a> more information.</p>
http://stackoverflow.com/questions/1408199/xml-repair-in-c/1408219#14082191Answer by OJ for XML repair in C#OJ2009-09-10T23:20:42Z2009-09-10T23:20:42Z<p>Use a regular expression to clean the xml first.</p>
<p>something like:</p>
<pre><code>s/([^\s"]+)=([^\s"]+="[^"]*")/\1\2/
</code></pre>
<p>Obviously this would need to be ported to your Regex engine of choice :)</p>
http://stackoverflow.com/questions/1408165/simple-way-to-handle-time-in-c/1408207#14082070Answer by OJ for Simple way to handle time in C#?OJ2009-09-10T23:15:31Z2009-09-10T23:15:31Z<p>So you're only interested in the time component of the date.</p>
<pre><code>if(DateTime.Now.TimeOfDay > startHour.TimeOfDay)
{
// do stuff
}
</code></pre>
<p>What's wrong with doing this?</p>
http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#14081911Answer by OJ for What is wrong with this simple piece of code?OJ2009-09-10T23:10:26Z2009-09-10T23:10:26Z<p>I was under the impression (and I might be wrong) that you can't push values into memory addresses like that. You have to go via registers:</p>
<pre><code>MOV EAX, 123
MOV [EBP-4], EAX
</code></pre>
<p>As I said, I might be wrong. But give it a go. Check out the instruction set manual as well. It'll show you what operations you can do on what addressing modes.</p>
http://stackoverflow.com/questions/1263607/c-c-preprocesser-macro/1264021#12640210Answer by OJ for C, C++ preprocesser macro OJ2009-08-12T03:07:18Z2009-08-12T03:07:18Z<p>Wierd. So far nobody has mentioned that the inline function option is type-safe, where the macro isn't!</p>
http://stackoverflow.com/questions/1263618/wpf-groupbox-contextmenu-now-showing-unless-the-border-header-clicked0WPF GroupBox ContextMenu now showing unless the border/header clickedOJ2009-08-12T00:04:08Z2009-08-12T00:47:18Z
<p>Hi everyone,</p>
<p>I've got a scenario where I have a GroupBox which has a bit of content in it. I'm looking to add ContextMenu to that GroupBox and have that menu shown when the user right-clicks anywhere in the box.</p>
<p>The problem I have is that the context menu only appears when the border or the header of the group box is clicked. If you click somewhere inside the box then the context menu of the parent is what's displayed.</p>
<p>Here's some XAML that demonstrates the problem:</p>
<pre><code><Window x:Class="Dummy.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Window.ContextMenu>
<ContextMenu>
<MenuItem Header="Window menu" />
</ContextMenu>
</Window.ContextMenu>
<GroupBox Header="GroupBox">
<GroupBox.ContextMenu>
<ContextMenu>
<MenuItem Header="GroupBox menu" />
</ContextMenu>
</GroupBox.ContextMenu>
</GroupBox>
</Window>
</code></pre>
<p>So when you click inside the groupbox, you always get the "Window menu" coming up, but I want the "Group menu" instead.</p>
<p>Does anyone know why this is happening and potentially how I go about resolving it?</p>
<p>Many thanks.</p>
<p>OJ</p>
http://stackoverflow.com/questions/1220262/creating-paths-on-different-threads-and-rendering-to-the-same-canvas0Creating Paths on Different Threads and Rendering to the Same CanvasOJ2009-08-03T00:21:11Z2009-08-03T01:39:20Z
<p>Hi all,</p>
<p>I'm currently working on a WPF (with C# behind the scenes) system which requires rendering of data from many different files. Most of those files are AutoCAD documents. Each file comes with a set of data that we need to draw on screen essentially on the same canvas. Think of each file as a potential "layer" or overlay that needs to appear on screen.</p>
<p>At the moment, each graphics source is parsed and converted to a set of <a href="http://msdn.microsoft.com/en-us/library/system.windows.shapes.path.aspx" rel="nofollow">Path</a> objects. Each collection of paths is rendered to it's own <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.canvas.aspx" rel="nofollow">Canvas</a> so that its visibility can be toggled on or off. Each of these canvases is made a child of a parent canvas which has a set of transforms applied to it. Those transforms are basic scale and translate render transforms which are used to support panning and zooming of the image that is being viewed.</p>
<p>This functionality currently works fine, but it's slow. We're rendering quite a few Path objects on screen and loading/creating those Path instances is taking quite a while.</p>
<p>The load speed in itself isn't so much of an issue; what really is the issue is that I need to create the Path instances on the UI thread, otherwise I can't render them all on the same canvas. Hence, while loading, the <strong>entire UI is locked up</strong> and the user can't do anything.</p>
<p>I have searched extensively on the web but can't seem to find a solution to the problem. I did stumble on one article (unfortunately I don't have the link anymore) which described a method of hosting items created on different threads on the same <em>window</em>. This didn't work for me at all. I tried a combination of things that I found in the article but I couldn't get anything to render at all.</p>
<p>So I guess the crux of my question is: Is it possible to create a set of UI objects, in particular Path objects, on different threads, then load them into a parent canvas on the main UI thread and have them all play nicely together? Any references, articles or tutorials would be greatly appreciated.</p>
<p>I'm looking forward to your help! Thanks for reading.</p>
<p>OJ</p>
<p><strong>Edit 1:</strong> Each of the Path instances is just a single line with a colour. They aren't complicated. But it seems that creation of those objects themselves is what is taking the time (I might be wrong). Thanks!</p>
http://stackoverflow.com/questions/649831/wpf-scroll-bar/649852#6498521Answer by OJ for WPF Scroll barOJ2009-03-16T10:18:25Z2009-06-24T11:54:18Z<p>Yes there is.</p>
http://stackoverflow.com/questions/979182/learning-c-from-boost-library-source-code/979193#9791939Answer by OJ for learning c++ from boost library source codeOJ2009-06-11T03:36:26Z2009-06-11T03:36:26Z<p>I can't give advice on how to read boost code, but I can offer some other advice.</p>
<p>Stop reading and start <strong>writing</strong> :) Reading is valuable, but you won't learn anywhere near as much unless you start writing code yourself. Start with the basics. Read the beginners books and <em>type out the samples</em> (don't copy and paste). You'll learn by having to fix the errors that are the result of you mistyping. Play with some of your own ideas for simple applications and go from there.</p>
<p>Starting off by reading boost source code is a sure fire way of scaring yourself off the language and/or ending up very confused with a lot of questions.</p>
<p>Start small, work your way up.</p>
http://stackoverflow.com/questions/979174/does-an-stl-map-always-give-the-same-ordering-when-iterating-from-begin-to-end/979181#979181-2Answer by OJ for Does an STL map always give the same ordering when iterating from begin() to end()?OJ2009-06-11T03:32:31Z2009-06-11T03:32:31Z<p>On the same data set under the same implementation of STL, yes. It's not guaranteed to be the same across different implementations as far as I'm aware.</p>
http://stackoverflow.com/questions/979164/c-cli-change-all-files-to-unmanaged-by-default/979175#9791750Answer by OJ for C++ / CLI - Change all files to UNMANAGED by defaultOJ2009-06-11T03:31:11Z2009-06-11T03:31:11Z<p>From what I can see, no there is no way of, by default, setting each .cpp file to native inside of VS or on the command line. You'll have to do it manually in the IDE (or script something that modifies the proj file).</p>
http://stackoverflow.com/questions/979129/is-there-a-decent-tool-for-automatically-cleaning-the-crap-out-of-vs-solution-dir/979157#9791574Answer by OJ for Is there a decent tool for automatically cleaning the crap out of VS solution directories?OJ2009-06-11T03:22:50Z2009-06-11T03:22:50Z<p><a href="http://www.hanselman.com/blog/TheWeeklySourceCode42TreeTrimPluginsAndMEF.aspx" rel="nofollow">TrimTree and CleanSources++</a> ?? :)</p>
http://stackoverflow.com/questions/979118/trouble-coming-up-with-good-names-for-functions/979146#9791460Answer by OJ for Trouble coming up with good names for functions.OJ2009-06-11T03:18:24Z2009-06-11T03:18:24Z<p>Your functions should really state what it is they do! But not in an overly verbose manner. This is something that you will master over time, it takes a bit of practice getting a function right.</p>
<p>Have a quick read of <a href="http://buffered.io/2007/07/20/avoid-writing-unintuitive-code/" rel="nofollow">this</a> to see some stuff I wrote about this kind of thing a while back :) Make sure you follow through to the <a href="http://blog.kirupa.com/?p=111" rel="nofollow">other article</a> that inspired me to write it and check out the comments.</p>
http://stackoverflow.com/questions/964792/how-to-edit-the-log-on-as-user-in-a-net-windows-service/964837#9648371Answer by OJ for How to edit the "log on as" user in a .Net Windows ServiceOJ2009-06-08T13:08:14Z2009-06-08T13:08:14Z<p>You will need to use the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceinstaller%5Fmembers.aspx" rel="nofollow">ServiceInstaller</a> class in conjuction with the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceinstaller%5Fmembers.aspx" rel="nofollow">ServiceProcessInstaller</a> class. To set the account to run the service under, you need to set the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.serviceprocessinstaller.account.aspx" rel="nofollow">Account</a> property.</p>
http://stackoverflow.com/questions/946019/restrict-number-of-user-account-sign-ups-in-a-period/964794#9647940Answer by OJ for Restrict number of user account sign-ups in a period ???OJ2009-06-08T12:59:44Z2009-06-08T12:59:44Z<p>I would recommend implementing a different authentication mechanism such as OpenID, or are Alex said, force the users to specify a valid email and send them confirmation links via email before accounts get created.</p>
<p>My preference is OpenID for sure.</p>
http://stackoverflow.com/questions/964743/why-is-person-not-a-ref-class/964767#9647670Answer by OJ for Why is PERSON not a ref class???OJ2009-06-08T12:51:44Z2009-06-08T12:51:44Z<p>Shouldn't you be putting:</p>
<pre><code>#using <mscorlib.dll>
</code></pre>
<p>at the top of your header files? I'm not sure if that would fix the issue to be honest.</p>
<p>Try making your <code>Person</code> class <code>abstract</code>.</p>
http://stackoverflow.com/questions/964233/cant-compile-c-code/964262#9642620Answer by OJ for can't compile c codeOJ2009-06-08T10:31:58Z2009-06-08T10:31:58Z<p>Looks like you might be missing some libraries.</p>
http://stackoverflow.com/questions/964170/how-do-i-bind-a-stackpanel-to-my-viewmodel/964252#9642520Answer by OJ for How do I bind a StackPanel to my ViewModel?OJ2009-06-08T10:29:29Z2009-06-08T10:29:29Z<p>Have you tried using a <code>Border</code> or just a plain <code>Grid</code>?</p>
<pre><code><Border Content="{Binding FormFields}" />
</code></pre>
<p>Still, I'm questioning the design. The Form Fields should live in a view, and the view should be specified in data template which is instantiated based on the view model type. I wouldn't personally do what you're doing in code.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/923822/whats-the-use-of-do-while0-when-we-define-a-macro/923828#923828-3Answer by OJ for What's the use of do while(0) when we define a macro?OJ2009-05-29T00:08:09Z2009-05-29T00:08:09Z<p>My guess would be something to do with portability across platforms and compilers.</p>
http://stackoverflow.com/questions/871745/is-this-a-correct-way-of-writing-the-haskell-foldr-function/871767#8717674Answer by OJ for Is this a correct way of writing the Haskell foldr function?OJ2009-05-16T05:27:05Z2009-05-16T05:27:05Z<p>Yours is broken. Try it with something that doesn't end up with a single numeric result.</p>
<pre><code>eg: listFoldr (++) "a" ["b", "c", "d"]
</code></pre>
<p>You're processing in the wrong direction.</p>
http://stackoverflow.com/questions/670464/dropdownlist-doesnt-reset-on-page-reload/670480#6704800Answer by OJ for dropdownlist doesn't reset on page reloadOJ2009-03-22T02:55:00Z2009-03-22T02:55:00Z<p>Try <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.enableviewstate.aspx" rel="nofollow">disabling veiwstate</a> on the checkbox if you don't need it.</p>
http://stackoverflow.com/questions/645728/what-is-a-module-in-net/645737#6457376Answer by OJ for What is a module in .NET?OJ2009-03-14T10:29:16Z2009-03-14T10:38:17Z<p>A module is a logical collection of code within an Assembly. You can have multiple modules inside an Assembly, and each module can be written in different .NET languages (VS, as far as I'm aware, doesn't support creation of multi-module assemblies).</p>
<p>Assemblies contain modules.
Modules contain classes.
Classes contain functions.</p>
<p>Yes you can access assemblies, modules, classes, functions, properties, fields etc all via reflection at runtime.</p>
<blockquote>
<p>A module is sub-assembly (satellite
assembly).</p>
</blockquote>
<p>I really don't agree with that. Any chance you pass a link that backs that up?</p>
http://stackoverflow.com/questions/645622/app-config-and-f-interactive-not-working/645653#6456530Answer by OJ for App.config and F# Interactive not workingOJ2009-03-14T08:51:49Z2009-03-14T09:03:46Z<p>The problem is that FSI is a different exe running behind the scenes and does some crazy tricks with on-the-fly compilation and generation of binaries. Check to see which <a href="http://msdn.microsoft.com/en-us/library/system.reflection.assembly.getexecutingassembly.aspx" rel="nofollow">assembly FSI thinks is running</a>. You might be surprised what you find :)</p>
<p>It will throw an error:</p>
<blockquote>
<p>System.NotSupportedException: The
invoked member is not supported in a
dynamic assembly. at
System.Reflection.Emit.AssemblyBuilder.get_Location()</p>
</blockquote>
<p>You need to look into how to get app.config settings into dynamic assemblies. This could be a pain, and might not be worth it. If it works as a compiled binary, I'd test those things that rely on config settings outside of FSI.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/618169/clean-vector-every-loop-iteration-what-is-the-most-memory-efficient-way/618244#6182441Answer by OJ for Clean vector every loop iteration. What is the most memory efficient way?OJ2009-03-06T09:46:08Z2009-03-06T09:46:08Z<blockquote>
<p>...reserving enough memory for the
vectors in advance will help me a lot
with reducing memory usage</p>
</blockquote>
<p>err... what?! That makes no sense at all. Reserving memory doesn't help with reducing memory usage in any way. It prevents the need for constant reallocation which makes things faster, but as far as <em>usage</em> goes you get no benefit.</p>
http://stackoverflow.com/questions/609240/access-violation/609310#6093100Answer by OJ for Access ViolationOJ2009-03-04T05:09:27Z2009-03-04T05:09:27Z<pre><code>for (int i = 0; i < 15; i++)
{
S_trial [i] = S_order [i];
}
// ....
for (int i = 0; i <15; i++)
{
S_order [i] = i;
}
</code></pre>
<p>Both loops are going too high. Change them to 14 instead of 15.</p>
http://stackoverflow.com/questions/331520/how-to-fix-referenced-assembly-does-not-have-a-strong-name-error-vs2005/331555#331555Comment by OJ on How to fix "Referenced assembly does not have a strong name" error (VS2005)OJ2009-11-09T12:45:50Z2009-11-09T12:45:50ZYou can use unsigned assemblies if your assembly is also unsigned.http://stackoverflow.com/questions/1664030/mvvm-command-routing-between-controls/1664143#1664143Comment by OJ on MVVM Command Routing Between ControlsOJ2009-11-04T02:13:35Z2009-11-04T02:13:35ZIt's not that this is a standard practice for linking stuff together. It's more a common practice for when you need to bind commands to command handlers that don't share bindings in another way. This is basically the same mechanism that the built-in WPF comments used (such as ApplicationCommands).http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#1598660Comment by OJ on ASP.NET which type of collection should I use?OJ2009-10-21T22:15:58Z2009-10-21T22:15:58ZIf you want loose typing, then I'd go for what others have already suggested, Dictionary<string, List<string>>.http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598655#1598655Comment by OJ on ASP.NET which type of collection should I use?OJ2009-10-21T04:04:27Z2009-10-21T04:04:27ZThis is overkill for Name and Company fields where there is only one.http://stackoverflow.com/questions/1598649/asp-net-which-type-of-collection-should-i-use/1598660#1598660Comment by OJ on ASP.NET which type of collection should I use?OJ2009-10-21T04:03:50Z2009-10-21T04:03:50ZHrm, it seems I may have misread. Are each of those values separate searches? Or is this one single search?http://stackoverflow.com/questions/1552973/replace-strings-in-fileComment by OJ on Replace strings in file OJ2009-10-12T06:14:58Z2009-10-12T06:14:58ZI agree with Marc. I'm not sure I can condone this activity by helping you :)http://stackoverflow.com/questions/1408165/simple-way-to-handle-time-in-c/1408207#1408207Comment by OJ on Simple way to handle time in C#?OJ2009-09-14T04:42:22Z2009-09-14T04:42:22ZYes, but that's if you assume that the snippet that was provided is the only part of the code that uses startHour. But what if startHour's date value is used elsewhere?http://stackoverflow.com/questions/1408199/xml-repair-in-c/1408219#1408219Comment by OJ on XML repair in C#OJ2009-09-14T04:41:09Z2009-09-14T04:41:09ZWithout a doubt. The goal was to give an idea, not a production quality implementation. Hence the statement "something like" :)http://stackoverflow.com/questions/1408225/c-net-framework-border-on-only-one-side-of-the-formComment by OJ on C# .net framework- border on only one side of the formOJ2009-09-10T23:37:08Z2009-09-10T23:37:08ZTo allow us to help you better, can you please tell us what you're trying to achieve by removing borders? Are you looking to stop the window from being resized? Is it just a visual thing?http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#1408191Comment by OJ on What is wrong with this simple piece of code?OJ2009-09-10T23:31:06Z2009-09-10T23:31:06ZThanks Michael. I need to get back into ASM. Time to break out the instruction manual. I appreciate the feedback :)http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408191#1408191Comment by OJ on What is wrong with this simple piece of code?OJ2009-09-10T23:11:52Z2009-09-10T23:11:52ZThis answer is a fail :)http://stackoverflow.com/questions/1408139/what-is-wrong-with-this-simple-piece-of-code/1408181#1408181Comment by OJ on What is wrong with this simple piece of code?OJ2009-09-10T23:11:01Z2009-09-10T23:11:01ZGreat answer :)http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c/17447#17447Comment by OJ on when should you use 'friend' in c++ ?OJ2009-09-07T23:16:22Z2009-09-07T23:16:22ZNow you're quibbling over semantics. The public methods expose an interface which isn't tied to your innards. The innards can change without affecting the interface. Plus I never said that I don't have public functions either. I appreciate the patronising hint too.
I'm struggling to see how your comment adds any value to the discussion -- especially when the thread is well over a year old.http://stackoverflow.com/questions/1263607/c-c-preprocesser-macro/1264021#1264021Comment by OJ on C, C++ preprocesser macro OJ2009-08-16T23:24:26Z2009-08-16T23:24:26ZBut it doesn't enforce the same types on the two parameters. Use it with char* and int and you'll see what I mean.http://stackoverflow.com/questions/1263925/how-do-i-refer-to-the-directory-where-my-net-program-is-installed/1263928#1263928Comment by OJ on How do I refer to the directory where my .net program is installed?OJ2009-08-12T03:01:35Z2009-08-12T03:01:35ZSystem.Environment.CurrentDirectory doesn't give the install directory, it gives the current active/working directory. See <a href="http://msdn.microsoft.com/en-us/library/system.environment.currentdirectory.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>