OJ

4,603
Reputation
318 views

Registered User

Name OJ
Member for 1 year
Seen 11 hours ago
Website
Location AU
Age 30
I know stuff. not all stuff, but lots of stuff nonetheless. The stuff is interesting stuff. Stuff I like to know and stuff that's important. I'm all about stuff.
Nov
9
comment How to fix “Referenced assembly does not have a strong name” error (VS2005)
You can use unsigned assemblies if your assembly is also unsigned.
Nov
4
comment MVVM Command Routing Between Controls
It'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).
Nov
3
accepted WPF Change Style’s Brush Color
Nov
2
answered MVVM Command Routing Between Controls
Nov
2
answered WPF Change Style’s Brush Color
Oct
21
comment ASP.NET which type of collection should I use?
If you want loose typing, then I'd go for what others have already suggested, Dictionary<string, List<string>>.
Oct
21
comment ASP.NET which type of collection should I use?
This is overkill for Name and Company fields where there is only one.
Oct
21
comment ASP.NET which type of collection should I use?
Hrm, it seems I may have misread. Are each of those values separate searches? Or is this one single search?
Oct
21
answered ASP.NET which type of collection should I use?
Oct
12
comment Replace strings in file
I agree with Marc. I'm not sure I can condone this activity by helping you :)
Oct
12
answered Running another program in Windows bat file and not create child process.
Sep
14
comment Simple way to handle time in C#?
Yes, 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?
Sep
14
comment XML repair in C#
Without a doubt. The goal was to give an idea, not a production quality implementation. Hence the statement "something like" :)
Sep
11
accepted In WPF, how can I handle an event in an ItemsControl ControlTemplate
Sep
10
comment C# .net framework- border on only one side of the form
To 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?
Sep
10
answered Hosted SVN - RepositoryHosting.com
Sep
10
comment What is wrong with this simple piece of code?
Thanks Michael. I need to get back into ASM. Time to break out the instruction manual. I appreciate the feedback :)
Sep
10
answered In WPF, how can I handle an event in an ItemsControl ControlTemplate
Sep
10
answered XML repair in C#
Sep
10
answered Simple way to handle time in C#?
Sep
10
comment What is wrong with this simple piece of code?
This answer is a fail :)
Sep
10
comment What is wrong with this simple piece of code?
Great answer :)
Sep
10
answered What is wrong with this simple piece of code?
Sep
7
comment when should you use ‘friend’ in c++ ?
Now 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.
Aug
16
comment C, C++ preprocesser macro
But it doesn't enforce the same types on the two parameters. Use it with char* and int and you'll see what I mean.
Aug
12
answered C, C++ preprocesser macro
Aug
12
comment How do I refer to the directory where my .net program is installed?
System.Environment.CurrentDirectory doesn't give the install directory, it gives the current active/working directory. See msdn.microsoft.com/en-us/library/…
Aug
12
comment WPF GroupBox ContextMenu now showing unless the border/header clicked
Hi again. So it appears that only certain types of content actually make this functionality work. Things like dockpanels and borders just dont work at all. So I wrapped the entire content in a label, as per your suggestion, and that fixed the issue. I don't like it, but it works :) Many thanks.
Aug
12
comment WPF GroupBox ContextMenu now showing unless the border/header clicked
Thanks Charlie. What you said makes sense. The funny thing is that in my actual code (not the fudged example above) I do have content, but that content isn't a simple label as you showed above. Are there only certain types of content that this stuff works with? I have a DockPanel which fills the entire group box, but that doesn't seem to help. Perhaps I'll throw a border in there and see how that goes. Thanks for your suggestion.
Aug
12
asked WPF GroupBox ContextMenu now showing unless the border/header clicked
Aug
8
awarded  Yearling
Aug
3
awarded  Enlightened
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
In short I am not able to create the elements on background threads as I wanted to. But I can create other kinds of elements and freeze them and utilise those in the main UI thread. It's not a perfect solution, but I can't see any other way of doing it. Thanks to all who responded.
Aug
3
awarded  Scholar
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Ben, your mentioning of the Freezing has pointed me in a direction that I have managed to get working. I dont think I'll ever be able to just create all the UI elements on other threads and merge them the way I want, so I have used your comments as a starting point for the fix. Thanks for the help.
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Mehmet, thanks for your response. It's an interesting idea. I'm not sure what the performance implications of it would be, but it could be worth a shot. When I've finished playing with Ben's suggestions I'll give this one a whirl as well. Cheers!
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Thanks again Ben. I'll take a look at that option shortly. Thanks again for the help.
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Ah, I think I know why I discounted it. PathGeometry is freezable, but Path is not. Am I mistaken?
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Ben, thanks for your response. I shall take a look at freezing them. I had in the past looked down this route, but for some reason discounted it (most likely without proper justification!). I'll give that a try and see how I go. Cheers.
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
PS. yes I have already read that article :) It doesn't help in my case. Thanks!
Aug
3
comment Creating Paths on Different Threads and Rendering to the Same Canvas
Thanks for the response Mitch. The dispatcher doesn't really come into it. The dispatcher is what is used to update the UI when you are done doing the work on other threads. My case doesn't fit this scenario. I need to create the UI objects on another thread and then merge them back onto the UI thread. I'm not just doing arbitrary background work. Cheers.
Aug
3
revised Creating Paths on Different Threads and Rendering to the Same Canvas
Added some clarification
Aug
3
asked Creating Paths on Different Threads and Rendering to the Same Canvas
Jul
17
accepted Making a custom run Dialog with C or C++?
Jul
8
awarded  Disciplined
Jul
1
accepted Is there a decent tool for automatically cleaning the crap out of VS solution directories?
Jun
28
awarded  Good Answer
Jun
17
comment Does an STL map always give the same ordering when iterating from begin() to end()?
So it's guaranteed unless it's not? :)
Jun
11
comment learning c++ from boost library source code
Add "More Effective C++" to that list. Another Meyer classic. But start writing code.
Jun
11
comment learning c++ from boost library source code
+1 for that response. Made me LOL.